-
Notifications
You must be signed in to change notification settings - Fork 29.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc: add return values and missing options to stream readable docs #19361
Conversation
doc/api/stream.md
Outdated
@@ -860,6 +860,7 @@ added: v0.9.4 | |||
* `destination` {stream.Writable} The destination for writing data | |||
* `options` {Object} Pipe options | |||
* `end` {boolean} End the writer when the reader ends. Defaults to `true`. | |||
* Returns {stream.Writable} making it possible to set up chains of piped streams |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A nit: this is usually * Returns:
(with a colon). The same for some other additions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed in 51f9814
doc/api/stream.md
Outdated
@@ -860,6 +860,7 @@ added: v0.9.4 | |||
* `destination` {stream.Writable} The destination for writing data | |||
* `options` {Object} Pipe options | |||
* `end` {boolean} End the writer when the reader ends. Defaults to `true`. | |||
* Returns: {stream.Writable} making it possible to set up chains of piped streams |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, linter issue:
863:82 warning Line must be at most 80 characters maximum-line-length remark-lint
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
my bad
fixed in 125df83
Landed in a2c0fcc |
Related to #11135
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passesAffected core subsystem(s)
doc, stream