-
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: remove invalid hash in link #15542
Conversation
Sections in the https://tools.ietf.org/html/rfc1122 are not linkable anymore. Replace the possibly confusing hash with the explicit section number in the text.
@@ -1000,7 +1000,7 @@ If `allowHalfOpen` is set to `true`, when the other end of the socket | |||
sends a FIN packet, the server will only send a FIN packet back when | |||
[`socket.end()`][] is explicitly called, until then the connection is | |||
half-closed (non-readable but still writable). See [`'end'`][] event | |||
and [RFC 1122][half-closed] for more information. | |||
and [RFC 1122][half-closed] (section 4.2.2.13) for more information. |
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.
Maybe this should stay
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.
What exactly should stay? I have not removed here anything, I've just added a note.
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.
Read this other way around 🤦♂️
@@ -1125,7 +1125,7 @@ Returns true if input is a version 6 IP address, otherwise returns false. | |||
[Identifying paths for IPC connections]: #net_identifying_paths_for_ipc_connections | |||
[Readable Stream]: stream.html#stream_class_stream_readable | |||
[duplex stream]: stream.html#stream_class_stream_duplex | |||
[half-closed]: https://tools.ietf.org/html/rfc1122#section-4.2.2.13 | |||
[half-closed]: https://tools.ietf.org/html/rfc1122 |
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.
Maybe replace with https://tools.ietf.org/html/rfc1122#page-87
@jasnell might have an idea how it is best to ref the RFC?
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.
I was thinking about the page hash, but it opens a doc with the wrong section in the top which also may be confusing.
cc @nodejs/documentation |
@refack Are you -1 on this? |
Nope. I'm +1. |
Sections in the https://tools.ietf.org/html/rfc1122 are not linkable anymore. Replace the possibly confusing hash with the explicit section number in the text. PR-URL: #15542 Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Refael Ackermann <[email protected]>
Landed in ebc58d7 |
Sections in the https://tools.ietf.org/html/rfc1122 are not linkable anymore. Replace the possibly confusing hash with the explicit section number in the text. PR-URL: #15542 Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Refael Ackermann <[email protected]>
Sections in the https://tools.ietf.org/html/rfc1122 are not linkable anymore. Replace the possibly confusing hash with the explicit section number in the text. PR-URL: #15542 Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Refael Ackermann <[email protected]>
Sections in the https://tools.ietf.org/html/rfc1122 are not linkable anymore. Replace the possibly confusing hash with the explicit section number in the text. PR-URL: nodejs/node#15542 Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Refael Ackermann <[email protected]>
Checklist
Affected core subsystem(s)
doc
Sections in the https://tools.ietf.org/html/rfc1122 are not linkable anymore. Replace the possibly confusing hash with the explicit section number in the text.