Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo #2350

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/recipes/minimal-browsersync-setup-with-gulp4.md
Expand Up @@ -110,7 +110,7 @@ $ gulp
```

Now if you go to [http://localhost:3000](http://localhost:3000), which is the default address of the
BrowserSync server, you will see that the end result in the browser is updated everytime you change
BrowserSync server, you will see that the end result in the browser is updated every time you change
the content of the source file. Here is the whole gulpfile:

```javascript
Expand Down
2 changes: 1 addition & 1 deletion docs/why-use-pump/README.md
Expand Up @@ -83,7 +83,7 @@ gulp.task('compress', function () {
This is a lot of complexity to add in each of your gulp tasks, and it’s easy to
forget to do it. In addition, it’s still not perfect, as it doesn’t properly
signal to gulp’s task system that the task has failed. We can fix this, and we
can handle the other pesky issues with error propogations with streams, but it’s
can handle the other pesky issues with error propagations with streams, but it’s
even more work!

## Using pump
Expand Down