-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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: clarify dgram socket.send() multi-buffer support #5130
Conversation
LGTM. Good step in docs. Since tbh I was just using |
The `buf` argument is a [`Buffer`] object containing the message. The `offset` | ||
and `length` specify the offset within the `Buffer` where the message begins | ||
and the number of bytes in the message, respectively. With messages that | ||
The `msg` argument containins the message the message to be sent. |
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.
the message the message
-> the message
One small typographical fix but LGTM otherwise. |
d429dc1
to
aeb59f1
Compare
LGTM |
@jasnell yes. Should I flag it anyhow in the commit message? Anyway, I've updated the typo. Any other fix? |
I've removed the LTS flag and added the semver-minor label. |
aeb59f1
to
82107df
Compare
Fixes: nodejs#5124 See: nodejs#4374 PR-URL: nodejs#5130 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]>
82107df
to
f8a7cff
Compare
This actual doc change does not need to be labeled semver-minor, we just need to make sure it doesn't land in v4 |
Fixes: #5124 See: #4374 PR-URL: #5130 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]>
Landed as 76bc4c7. |
Fixes: #5124 See: #4374 PR-URL: #5130 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]>
Fixes: #5124 See: #4374 PR-URL: #5130 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]>
Fixes: nodejs#5124 See: nodejs#4374 PR-URL: nodejs#5130 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]>
Fixes: #5124
@Trott @eljefedelrodeodeljefe @silverwind @nodejs/documentation Let me know if I need to change this more.