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:
-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 4cc15902615..f7f01ca5a9c 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: