From d1da11765d886c764b93f25c1b95fe14472c2946 Mon Sep 17 00:00:00 2001 From: himself65 Date: Sat, 18 May 2019 20:33:56 +0800 Subject: [PATCH] doc: correct parameter type on 'subprocess.kill([signal])' PR-URL: https://github.com/nodejs/node/pull/27760 Reviewed-By: Colin Ihrig Reviewed-By: James M Snell Reviewed-By: Luigi Pinca Reviewed-By: Yongsheng Zhang Reviewed-By: Trivikram Kamat --- doc/api/child_process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/child_process.md b/doc/api/child_process.md index b3c9d10250f759..b7c0d52a0fd5c8 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -1022,7 +1022,7 @@ within the child process to close the IPC channel as well. added: v0.1.90 --> -* `signal` {string} +* `signal` {number|string} The `subprocess.kill()` method sends a signal to the child process. If no argument is given, the process will be sent the `'SIGTERM'` signal. See