From 3455f18906465c1e502bb8a5350bcd4babeff291 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 5dbdd6bc05f10a..2e645ef7662cac 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -1739,7 +1739,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}`);