From 16f8298170245f81f91ea14af3a98fa7f2b22a10 Mon Sep 17 00:00:00 2001 From: "Pooja D.P" Date: Sat, 10 Oct 2020 22:42:37 +0400 Subject: [PATCH] doc: revise description of process.ppid PR-URL: https://github.com/nodejs/node/pull/35589 Reviewed-By: Anna Henningsen Reviewed-By: Rich Trott Reviewed-By: James M Snell --- 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 5c5a46e85c1148..841b93540a246d 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}`);