From 05a2e666a2c82a2f9f64e649cefa2522e91b93bc Mon Sep 17 00:00:00 2001 From: Emanuele DelBono Date: Thu, 27 Oct 2016 21:22:43 +0200 Subject: [PATCH 1/3] Updated reference to signal list in "signal events" section Changed the reference from sigaction(2) to signal(7) like requested in issue #9309 --- doc/api/process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/process.md b/doc/api/process.md index 78bdcd3f0582ae..b5892867ccc15b 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -374,7 +374,7 @@ The `*-deprecation` command line flags only affect warnings that use the name 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 `SIGINT`, `SIGHUP`, etc. The name of each event will be the uppercase common name for the signal (e.g. From bf00111425f37fc5370f62d23210d38bc164d8d4 Mon Sep 17 00:00:00 2001 From: Emanuele DelBono Date: Thu, 27 Oct 2016 21:44:28 +0200 Subject: [PATCH 2/3] Moved link to the bottom --- doc/api/process.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/api/process.md b/doc/api/process.md index b5892867ccc15b..e1331328576b56 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -374,7 +374,7 @@ The `*-deprecation` command line flags only affect warnings that use the name Signal events will be emitted when the Node.js process receives a signal. Please -refer to [signal(7)](http://man7.org/linux/man-pages/man7/signal.7.html) for a listing of standard POSIX signal names such as +refer to [signal(7)][] for a listing of standard POSIX signal names such as `SIGINT`, `SIGHUP`, etc. The name of each event will be the uppercase common name for the signal (e.g. @@ -1728,3 +1728,4 @@ cases: [Cluster]: cluster.html [`process.exitCode`]: #processexitcode-1 [LTS]: https://github.com/nodejs/LTS/ +[signal(7)]: http://man7.org/linux/man-pages/man7/signal.7.html From c5b29a26c79283e6c45310085b43197a93fd05dd Mon Sep 17 00:00:00 2001 From: Emanuele DelBono Date: Thu, 27 Oct 2016 22:24:55 +0200 Subject: [PATCH 3/3] Removed the link I removed the link since the doc tool automatically add link to man pages. --- doc/api/process.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/api/process.md b/doc/api/process.md index e1331328576b56..e2b269a35873d0 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -374,7 +374,7 @@ The `*-deprecation` command line flags only affect warnings that use the name Signal events will be emitted when the Node.js process receives a signal. Please -refer to [signal(7)][] for a listing of standard POSIX signal names such as +refer to signal(7) for a listing of standard POSIX signal names such as `SIGINT`, `SIGHUP`, etc. The name of each event will be the uppercase common name for the signal (e.g. @@ -1728,4 +1728,3 @@ cases: [Cluster]: cluster.html [`process.exitCode`]: #processexitcode-1 [LTS]: https://github.com/nodejs/LTS/ -[signal(7)]: http://man7.org/linux/man-pages/man7/signal.7.html