summaryrefslogtreecommitdiff
path: root/test/parallel/test-stream-unshift-empty-chunk.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-stream-unshift-empty-chunk.js')
-rw-r--r--test/parallel/test-stream-unshift-empty-chunk.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-stream-unshift-empty-chunk.js b/test/parallel/test-stream-unshift-empty-chunk.js
index 0f0a13722c..dbcafbfdcb 100644
--- a/test/parallel/test-stream-unshift-empty-chunk.js
+++ b/test/parallel/test-stream-unshift-empty-chunk.js
@@ -43,7 +43,7 @@ r.on('readable', () => {
let chunk;
while (chunk = r.read()) {
seen.push(chunk.toString());
- // simulate only reading a certain amount of the data,
+ // Simulate only reading a certain amount of the data,
// and then putting the rest of the chunk back into the
// stream, like a parser might do. We just fill it with
// 'y' so that it's easy to see which bits were touched,