From bfff4fc3c9a96c456bbde266f1087103f026784d 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 8196fa15a27f06..c644598dc35e64 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -1699,7 +1699,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}`);