-
Notifications
You must be signed in to change notification settings - Fork 30k
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
stream: fix finished typo #31881
stream: fix finished typo #31881
Conversation
8174105
to
5c00c96
Compare
nodejs#31509 introduced a slight typo. Fortunately this typo does not have big impact due to `isWritableFinished()`. Fixes: nodejs#31509 (comment)
5c00c96
to
242ccc2
Compare
@@ -312,7 +312,6 @@ testClosed((opts) => new Writable({ write() {}, ...opts })); | |||
})); | |||
} | |||
|
|||
|
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.
Unrelated whitespace change?
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.
Yea, there was an extra whitespace that shouldn't be there...
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.
lgtm
#31509 introduced a slight typo. Fortunately this typo does not have big impact due to `isWritableFinished()`. Fixes: #31509 (comment) PR-URL: #31881 Fixes: #31509 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Landed in 21bd667 |
Adding don't land labels as this relies on a semver-major change |
#31509 introduced a slight typo. Fortunately this typo does not have big impact due to
isWritableFinished()
.Fixes: #31509 (comment)
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes