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
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2019-02-15 22:48:24 +0300
committerRich Trott <rtrott@gmail.com>2019-02-19 00:52:14 +0300
commitf86f16455d51dea926208df6d9406da7b7ed5cc0 (patch)
tree5673f411f58653a53156d0b38439abe2ac8e163d /doc/api/child_process.md
parent8b9364364e033246f85597a42d62b375a13e2c4f (diff)
doc: remove unnecessary bold text from child_process.md
PR-URL: https://github.com/nodejs/node/pull/26141 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'doc/api/child_process.md')
-rw-r--r--doc/api/child_process.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/child_process.md b/doc/api/child_process.md
index 108efb91cef..64edf151e3b 100644
--- a/doc/api/child_process.md
+++ b/doc/api/child_process.md
@@ -674,9 +674,9 @@ 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**
-block the Node.js event loop, pausing execution of any additional code until the
-spawned process exits.
+[`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.
Blocking calls like these are mostly useful for simplifying general-purpose
scripting tasks and for simplifying the loading/processing of application