From 1073f09cad337a9cc6aae95db54c5d001719aa0e Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Thu, 22 Mar 2018 22:46:25 -0700 Subject: [PATCH] doc: minor improvements to buffer.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/19547 Reviewed-By: Richard Lau Reviewed-By: Michaël Zasso Reviewed-By: Tobias Nießen Reviewed-By: Luigi Pinca Reviewed-By: Сковорода Никита Андреевич Reviewed-By: Vse Mozhet Byt Reviewed-By: Colin Ihrig Reviewed-By: Trivikram Kamat --- doc/api/buffer.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/buffer.md b/doc/api/buffer.md index df6912c9c6a6b8..f4109721db8718 100644 --- a/doc/api/buffer.md +++ b/doc/api/buffer.md @@ -18,9 +18,9 @@ use cases. 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`. ```js