Skip to content

Commit

Permalink
Update backpressuring-in-streams.md (#2086)
Browse files Browse the repository at this point in the history
* Update backpressuring-in-streams.md

* fa: fix errors

fix typo and reference errors

* it: fix errors

Fix typo and reference errors

* ja: fix errors

Fix typo and reference errors
  • Loading branch information
badersur authored and fhemberger committed Feb 17, 2019
1 parent 884a701 commit 27d7611
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion locale/en/docs/guides/backpressuring-in-streams.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ You can also call [`promisify`][] on pipeline to use it with `async` / `await`:
const stream = require('stream');
const fs = require('fs');
const zlib = require('zlib');
const util = require('util');

const pipeline = util.promisify(stream.pipeline);

Expand Down Expand Up @@ -422,7 +423,7 @@ In this case, your output from your [`Readable`][] stream will enter in the
Readable.pipe(Transformable).pipe(Writable);
```
Backpressure will be automatically applied, but note the both the incoming and
Backpressure will be automatically applied, but note that both the incoming and
outgoing `highWaterMark` of the [`Transform`][] stream may be manipulated and
will effect the backpressure system.
Expand Down
3 changes: 2 additions & 1 deletion locale/fa/docs/guides/backpressuring-in-streams.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ You can also call [`promisify`][] on pipeline to use it with `async` / `await`:
const stream = require('stream');
const fs = require('fs');
const zlib = require('zlib');
const util = require('util');

const pipeline = util.promisify(stream.pipeline);

Expand Down Expand Up @@ -422,7 +423,7 @@ In this case, your output from your [`Readable`][] stream will enter in the
Readable.pipe(Transformable).pipe(Writable);
```
Backpressure will be automatically applied, but note the both the incoming and
Backpressure will be automatically applied, but note that both the incoming and
outgoing `highWaterMark` of the [`Transform`][] stream may be manipulated and
will effect the backpressure system.
Expand Down
3 changes: 2 additions & 1 deletion locale/it/docs/guides/backpressuring-in-streams.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ You can also call [`promisify`][] on pipeline to use it with `async` / `await`:
const stream = require('stream');
const fs = require('fs');
const zlib = require('zlib');
const util = require('util');

const pipeline = util.promisify(stream.pipeline);

Expand Down Expand Up @@ -422,7 +423,7 @@ In this case, your output from your [`Readable`][] stream will enter in the
Readable.pipe(Transformable).pipe(Writable);
```
Backpressure will be automatically applied, but note the both the incoming and
Backpressure will be automatically applied, but note that both the incoming and
outgoing `highWaterMark` of the [`Transform`][] stream may be manipulated and
will effect the backpressure system.
Expand Down
3 changes: 2 additions & 1 deletion locale/ja/docs/guides/backpressuring-in-streams.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ You can also call [`promisify`][] on pipeline to use it with `async` / `await`:
const stream = require('stream');
const fs = require('fs');
const zlib = require('zlib');
const util = require('util');

const pipeline = util.promisify(stream.pipeline);

Expand Down Expand Up @@ -422,7 +423,7 @@ In this case, your output from your [`Readable`][] stream will enter in the
Readable.pipe(Transformable).pipe(Writable);
```
Backpressure will be automatically applied, but note the both the incoming and
Backpressure will be automatically applied, but note that both the incoming and
outgoing `highWaterMark` of the [`Transform`][] stream may be manipulated and
will effect the backpressure system.
Expand Down

0 comments on commit 27d7611

Please sign in to comment.