Skip to content

Commit 51f9814

Browse files
committed
doc: add missing colons in Returns blocks
1 parent 90b5365 commit 51f9814

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/api/stream.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

865865
The `readable.pipe()` method attaches a [Writable][] stream to the `readable`,
866866
causing 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.
917917
added: v9.3.0
918918
-->
919919

920-
* Returns {number}
920+
* Returns: {number}
921921

922922
Returns 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

933933
The `readable.read()` method pulls some data out of the internal buffer and
934934
returns 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.
973973
added: v9.4.0
974974
-->
975975

976-
* Returns {number}
976+
* Returns: {number}
977977

978978
This property contains the number of bytes (or objects) in the queue
979979
ready to be read. The value provides introspection data regarding

0 commit comments

Comments
 (0)