@@ -860,7 +860,7 @@ added: v0.9.4
860860* ` destination ` {stream.Writable} The destination for writing data
861861* ` options ` {Object} Pipe options
862862 * ` end ` {boolean} End the writer when the reader ends. Defaults to ` true ` .
863- * Returns {stream.Writable} making it possible to set up chains of piped streams
863+ * Returns: {stream.Writable} making it possible to set up chains of piped streams
864864
865865The ` readable.pipe() ` method attaches a [ Writable] [ ] stream to the ` readable ` ,
866866causing it to switch automatically into flowing mode and push all of its data
@@ -917,7 +917,7 @@ closed until the Node.js process exits, regardless of the specified options.
917917added: v9.3.0
918918-->
919919
920- * Returns {number}
920+ * Returns: {number}
921921
922922Returns the value of ` highWaterMark ` passed when constructing this
923923` Readable ` .
@@ -928,7 +928,7 @@ added: v0.9.4
928928-->
929929
930930* ` size ` {number} Optional argument to specify how much data to read.
931- * Returns {string|Buffer|null}
931+ * Returns: {string|Buffer|null}
932932
933933The ` readable.read() ` method pulls some data out of the internal buffer and
934934returns it. If no data available to be read, ` null ` is returned. By default,
@@ -973,7 +973,7 @@ been emitted will return `null`. No runtime error will be raised.
973973added: v9.4.0
974974-->
975975
976- * Returns {number}
976+ * Returns: {number}
977977
978978This property contains the number of bytes (or objects) in the queue
979979ready to be read. The value provides introspection data regarding
0 commit comments