-
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
Updated reference to signal list in "signal events" section #9323
Conversation
Changed the reference from sigaction(2) to signal(7) like requested in issue nodejs#9309
@@ -374,7 +374,7 @@ The `*-deprecation` command line flags only affect warnings that use the name | |||
<!--name=SIGINT, SIGHUP, etc.--> | |||
|
|||
Signal events will be emitted when the Node.js process receives a signal. Please | |||
refer to sigaction(2) for a listing of standard POSIX signal names such as | |||
refer to [signal(7)](http://man7.org/linux/man-pages/man7/signal.7.html) for a listing of standard POSIX signal names such as |
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.
Can you move the URL to the bottom of the page with the others.
I don't think a link needs to be explicitly added since the doc tools automatically insert links when they see man page references. So just changing the 'sigaction(2)' to 'signal(7)' should be enough. |
I removed the link since the doc tool automatically add link to man pages.
LGTM |
@cjihrig I think you have to mark your requested changes as having been made (I'm not loving the new review system yet). LGTM |
Fixes: #9309 PR-URL: #9323 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Sam Roberts <[email protected]> Reviewed-By: Brian White <[email protected]>
Fixes: #9309 PR-URL: #9323 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Sam Roberts <[email protected]> Reviewed-By: Brian White <[email protected]>
Fixes: #9309 PR-URL: #9323 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Sam Roberts <[email protected]> Reviewed-By: Brian White <[email protected]>
Fixes: #9309 PR-URL: #9323 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Sam Roberts <[email protected]> Reviewed-By: Brian White <[email protected]>
Documentation is changed or added.
Changed the reference from sigaction(2) to signal(7) like requested in issue #9309