summaryrefslogtreecommitdiff
path: root/test/parallel/test-stream-pipe-after-end.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-stream-pipe-after-end.js')
-rw-r--r--test/parallel/test-stream-pipe-after-end.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-stream-pipe-after-end.js b/test/parallel/test-stream-pipe-after-end.js
index d0d0a19bd6..2eb714b2ca 100644
--- a/test/parallel/test-stream-pipe-after-end.js
+++ b/test/parallel/test-stream-pipe-after-end.js
@@ -51,10 +51,10 @@ class TestWritable extends Writable {
}
}
-// this one should not emit 'end' until we read() from it later.
+// This one should not emit 'end' until we read() from it later.
const ender = new TestReadable();
-// what happens when you pipe() a Readable that's already ended?
+// What happens when you pipe() a Readable that's already ended?
const piper = new TestReadable();
// pushes EOF null, and length=0, so this will trigger 'end'
piper.read();