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
path: root/doc
diff options
context:
space:
mode:
authorPooja D.P <Pooja.D.P@ibm.com>2020-10-10 21:42:37 +0300
committerMyles Borins <mylesborins@github.com>2020-10-14 23:21:26 +0300
commit16f8298170245f81f91ea14af3a98fa7f2b22a10 (patch)
tree1e2119774928c228bed78b0da9e32f110461c3b1 /doc
parentcad86d40de5033ab6201d9f3e788858456d76858 (diff)
doc: revise description of process.ppid
PR-URL: https://github.com/nodejs/node/pull/35589 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/process.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/api/process.md b/doc/api/process.md
index 5c5a46e85c1..841b93540a2 100644
--- a/doc/api/process.md
+++ b/doc/api/process.md
@@ -1735,7 +1735,8 @@ added:
* {integer}
-The `process.ppid` property returns the PID of the current parent process.
+The `process.ppid` property returns the PID of the parent of the
+current process.
```js
console.log(`The parent process is pid ${process.ppid}`);