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/api
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-07-05 20:00:10 +0300
committerRich Trott <rtrott@gmail.com>2021-07-07 21:01:08 +0300
commit92573721c7cff104ccb82b6ed3e8aa69c4b27510 (patch)
treef5cb45ffde989d18c95b8fda01d13672d506492d /doc/api
parenta8a86387fa4a8bb2c0e058c5c16f3fa666f15fe7 (diff)
doc: fix boldface punctuation for full sentences
If an entire sentence is in boldface, then generally the terminating punctuation should as well. PR-URL: https://github.com/nodejs/node/pull/39278 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/domain.md2
-rw-r--r--doc/api/fs.md6
-rw-r--r--doc/api/punycode.md2
-rw-r--r--doc/api/vm.md2
4 files changed, 6 insertions, 6 deletions
diff --git a/doc/api/domain.md b/doc/api/domain.md
index 000878ea70d..fd75be9cd49 100644
--- a/doc/api/domain.md
+++ b/doc/api/domain.md
@@ -20,7 +20,7 @@ changes:
<!-- source_link=lib/domain.js -->
-**This module is pending deprecation**. Once a replacement API has been
+**This module is pending deprecation.** Once a replacement API has been
finalized, this module will be fully deprecated. Most developers should
**not** have cause to use this module. Users who absolutely must have
the functionality that domains provide may rely on it for the time being
diff --git a/doc/api/fs.md b/doc/api/fs.md
index 8b9d7d7a75c..d829383cfa1 100644
--- a/doc/api/fs.md
+++ b/doc/api/fs.md
@@ -1087,7 +1087,7 @@ changes:
option is not `true`. **Default:** `0`.
* `recursive` {boolean} If `true`, perform a recursive directory removal. In
recursive mode, operations are retried on failure. **Default:** `false`.
- **Deprecated**.
+ **Deprecated.**
* `retryDelay` {integer} The amount of time in milliseconds to wait between
retries. This option is ignored if the `recursive` option is not `true`.
**Default:** `100`.
@@ -3220,7 +3220,7 @@ changes:
option is not `true`. **Default:** `0`.
* `recursive` {boolean} If `true`, perform a recursive directory removal. In
recursive mode, operations are retried on failure. **Default:** `false`.
- **Deprecated**.
+ **Deprecated.**
* `retryDelay` {integer} The amount of time in milliseconds to wait between
retries. This option is ignored if the `recursive` option is not `true`.
**Default:** `100`.
@@ -4862,7 +4862,7 @@ changes:
option is not `true`. **Default:** `0`.
* `recursive` {boolean} If `true`, perform a recursive directory removal. In
recursive mode, operations are retried on failure. **Default:** `false`.
- **Deprecated**.
+ **Deprecated.**
* `retryDelay` {integer} The amount of time in milliseconds to wait between
retries. This option is ignored if the `recursive` option is not `true`.
**Default:** `100`.
diff --git a/doc/api/punycode.md b/doc/api/punycode.md
index c9c20ce6350..7f4e5fcf003 100644
--- a/doc/api/punycode.md
+++ b/doc/api/punycode.md
@@ -9,7 +9,7 @@ deprecated: v7.0.0
<!-- source_link=lib/punycode.js -->
-**The version of the punycode module bundled in Node.js is being deprecated**.
+**The version of the punycode module bundled in Node.js is being deprecated.**
In a future major version of Node.js this module will be removed. Users
currently depending on the `punycode` module should switch to using the
userland-provided [Punycode.js][] module instead. For punycode-based URL
diff --git a/doc/api/vm.md b/doc/api/vm.md
index df9dc824f6a..49297ada3c6 100644
--- a/doc/api/vm.md
+++ b/doc/api/vm.md
@@ -10,7 +10,7 @@
The `vm` module enables compiling and running code within V8 Virtual
Machine contexts. **The `vm` module is not a security mechanism. Do
-not use it to run untrusted code**.
+not use it to run untrusted code.**
JavaScript code can be compiled and run immediately or
compiled, saved, and run later.