Skip to content

Commit f67580e

Browse files
committed
fix: correct indentation in MyReadable class example
1 parent 3ceb028 commit f67580e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/site/pages/en/learn/modules/backpressuring-in-streams.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ Here is an example of good practice, where the `Readable` stream respects backpr
563563
class MyReadable extends Readable {
564564
_read(size) {
565565
let chunk;
566-
let canPushMore = true;
566+
let canPushMore = true;
567567
while (canPushMore && null !== (chunk = getNextChunk())) {
568568
canPushMore = this.push(chunk);
569569
}

0 commit comments

Comments
 (0)