From 4d1c87ed6bcfbb0791c52b86f1ec2aece26af20e Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 15 Feb 2019 11:43:04 -0800 Subject: [PATCH] doc: remove all-caps shouting from child_process.md Remove all-caps from child_process.md. PR-URL: https://github.com/nodejs/node/pull/26141 Reviewed-By: Vse Mozhet Byt Reviewed-By: James M Snell --- doc/api/child_process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/child_process.md b/doc/api/child_process.md index 62b2ff08c1e8eb..a5579451a7325c 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -674,7 +674,7 @@ See also: [`child_process.exec()`][] and [`child_process.fork()`][]. ## Synchronous Process Creation The [`child_process.spawnSync()`][], [`child_process.execSync()`][], and -[`child_process.execFileSync()`][] methods are **synchronous** and **WILL** +[`child_process.execFileSync()`][] methods are **synchronous** and **will** block the Node.js event loop, pausing execution of any additional code until the spawned process exits.