Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Bridgewater <ruben@bridgewater.de>2019-01-21 03:22:27 +0300
committerRuben Bridgewater <ruben@bridgewater.de>2019-02-28 20:31:10 +0300
commit9edce1e12a7b69e7986dd15fce18d6e46590161a (patch)
treec5d37d8016a27bab698520ecc51cda4f7ad99d40 /doc/api/child_process.md
parent7b674697d8005c29391ebaaf562eb4d92ed9b129 (diff)
benchmark,doc,lib,test: capitalize comments
This updates a lot of comments. PR-URL: https://github.com/nodejs/node/pull/26223 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
Diffstat (limited to 'doc/api/child_process.md')
-rw-r--r--doc/api/child_process.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/child_process.md b/doc/api/child_process.md
index 9586b662eb1..a6064ee3c75 100644
--- a/doc/api/child_process.md
+++ b/doc/api/child_process.md
@@ -1070,7 +1070,7 @@ const subprocess = spawn(
);
setTimeout(() => {
- subprocess.kill(); // does not terminate the node process in the shell
+ subprocess.kill(); // Does not terminate the node process in the shell
}, 2000);
```