diff --git a/test/parallel/test-stream-pipe-objectmode-to-non-objectmode.js b/test/parallel/test-stream-pipe-objectmode-to-non-objectmode.js index bf5cfc0434b..71fbf141248 100644 --- a/test/parallel/test-stream-pipe-objectmode-to-non-objectmode.js +++ b/test/parallel/test-stream-pipe-objectmode-to-non-objectmode.js @@ -4,8 +4,8 @@ const common = require('../common'); const assert = require('node:assert'); const { Readable, Transform, Writable } = require('node:stream'); -// Pipeine objects from object mode to non-object mode should throw an error and -// catch by the consumer +// Piping objects from object mode to non-object mode in a pipeline should throw +// an error and catch by the consumer { const objectReadable = Readable.from([ { hello: 'hello' },