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-10 21:50:40 +0300
committerRich Trott <rtrott@gmail.com>2021-07-13 01:47:20 +0300
commit91ec27fb19f2fffb19cbfa93fd765edeff0dfb83 (patch)
tree17cd3c04910b287236523903e740d251b95373bf /doc/api
parent5cccdccf883f1ffbb03398624bb51b7760f0bbdd (diff)
doc: do not use tilde for "about" or "approximately"
Refs: https://docs.microsoft.com/en-us/style-guide/a-z-word-list-term-collections/term-collections/special-characters PR-URL: https://github.com/nodejs/node/pull/39344 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Darshan Sen <raisinten@gmail.com>
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/buffer.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/api/buffer.md b/doc/api/buffer.md
index 0db0a455715..f35c2f9ce6f 100644
--- a/doc/api/buffer.md
+++ b/doc/api/buffer.md
@@ -5031,9 +5031,10 @@ changes:
* {integer} The largest size allowed for a single `Buffer` instance.
-On 32-bit architectures, this value currently is 2<sup>30</sup> - 1 (~1 GB).
+On 32-bit architectures, this value currently is 2<sup>30</sup> - 1 (about 1
+GB).
-On 64-bit architectures, this value currently is 2<sup>32</sup> (~4 GB).
+On 64-bit architectures, this value currently is 2<sup>32</sup> (about 4 GB).
It reflects [`v8::TypedArray::kMaxLength`][] under the hood.