-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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 added:
information for stream
#7287
Conversation
Some minor things:
Other than that, the actual content of the PR LGTM |
@@ -205,10 +205,16 @@ myStream.end('done writing data'); | |||
``` | |||
|
|||
#### Class: stream.Writable | |||
<!-- YAML | |||
added: v0.3.0 | |||
--> |
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.
0.9.4
Writable Streams section is done. |
Readable Streams section is done |
@@ -325,6 +349,9 @@ implementations that implement the `writable.\_writev()` method can perform | |||
buffered writes in a more optimized manner. | |||
|
|||
##### writable.end([chunk][, encoding][, callback]) | |||
<!-- YAML | |||
added: v0.9.9 | |||
--> |
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.
$ nvm use 0.9.4
Now using node v0.9.4
$ node
> typeof require('stream').Writable.prototype.end
'function'
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.
Yeah, but in 0.9.4
that method doesn't accept a callback
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.
@italoacasas I’d still prefer to go with the version it was added in; adding some sort of changelog for individual methods is definitely planned.
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.
ok
LGTM with |
@italoacasas ping |
sorry for the late response. I was on vacation, I'll finish this PR this week. |
I'm back working on this. |
This should be ready, I don't find any other place where to add |
LGTM |
Landed in |
Ref: nodejs#6578 PR-URL: nodejs#7287 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Claudio Rodriguez <[email protected]>
Ref: #6578 PR-URL: #7287 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Claudio Rodriguez <[email protected]>
Ref: #6578 PR-URL: #7287 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Claudio Rodriguez <[email protected]>
this is not landing cleanly on v4.x. Please submit a backport if you would like to see it land |
I'm going to do it tonight |
Checklist
Affected core subsystem(s)
Description of change
Add
added:
information forstream