summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2018-03-22 22:46:25 -0700
committerBeth Griggs <Bethany.Griggs@uk.ibm.com>2018-12-03 21:11:10 +0000
commitd79e7d6e89968e47d47607430048b1fdd564d276 (patch)
tree6478cc3fc2d287f415a1529b503a7eb136d38271
parent06491482f83af0adf74013345e2cd5fc09b4633a (diff)
downloadnode-new-d79e7d6e89968e47d47607430048b1fdd564d276.tar.gz
doc: minor improvements to buffer.md
PR-URL: https://github.com/nodejs/node/pull/19547 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
-rw-r--r--doc/api/buffer.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/buffer.md b/doc/api/buffer.md
index 4cc1590261..f7f01ca5a9 100644
--- a/doc/api/buffer.md
+++ b/doc/api/buffer.md
@@ -15,9 +15,9 @@ With [`TypedArray`] now available, the `Buffer` class implements the
Instances of the `Buffer` class are similar to arrays of integers but
correspond to fixed-sized, raw memory allocations outside the V8 heap.
The size of the `Buffer` is established when it is created and cannot be
-resized.
+changed.
-The `Buffer` class is a global within Node.js, making it unlikely that one
+The `Buffer` class is within the global scope, making it unlikely that one
would need to ever use `require('buffer').Buffer`.
Examples: