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
path: root/doc
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2018-10-09 05:48:23 +0300
committerMyles Borins <mylesborins@google.com>2018-11-29 19:38:14 +0300
commit4c04e7c321f345ef8bf7a4007254e0ea67fda4b9 (patch)
tree7ee960bcb8061669e9a9c5751b896341ce263f2f /doc
parentdf512961ce73ce070dcc6720f6aaa5185bb40a1c (diff)
doc: remove personal pronoun from worker_threads
Per the Style Guide, remove the use of the personal pronoun _you_ from the formal API documentation for `worker_threads`. PR-URL: https://github.com/nodejs/node/pull/23347 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/worker_threads.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/api/worker_threads.md b/doc/api/worker_threads.md
index 37751c21bbb..b73787174cd 100644
--- a/doc/api/worker_threads.md
+++ b/doc/api/worker_threads.md
@@ -154,8 +154,8 @@ added: v10.5.0
-->
Disables further sending of messages on either side of the connection.
-This method can be called once you know that no further communication
-will happen over this `MessagePort`.
+This method can be called when no further communication will happen over this
+`MessagePort`.
### port.postMessage(value[, transferList])
<!-- YAML
@@ -436,9 +436,9 @@ to have completed.
**Warning**: Currently, not all code in the internals of Node.js is prepared to
expect termination at arbitrary points in time and may crash if it encounters
-that condition. Consequently, you should currently only call `.terminate()` if
-it is known that the Worker thread is not accessing Node.js core modules other
-than what is exposed in the `worker` module.
+that condition. Consequently, only call `.terminate()` if it is known that the
+Worker thread is not accessing Node.js core modules other than what is exposed
+in the `worker` module.
### worker.threadId
<!-- YAML