From c184929975a90de129ec6786c0227c5b93fcd757 Mon Sep 17 00:00:00 2001 From: Tom Nagle Date: Mon, 25 May 2020 09:23:04 +1000 Subject: [PATCH] doc: improve buffer.md a tiny bit PR-URL: https://github.com/nodejs/node/pull/33547 Reviewed-By: Ruben Bridgewater Reviewed-By: Gireesh Punathil Reviewed-By: James M Snell --- doc/api/buffer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/buffer.md b/doc/api/buffer.md index 89b08922339e61..0da931480fc149 100644 --- a/doc/api/buffer.md +++ b/doc/api/buffer.md @@ -14,7 +14,7 @@ into the JavaScript language. A number of additional methods are supported that cover additional use cases. Node.js APIs accept plain [`Uint8Array`][]s wherever `Buffer`s are supported as well. -Instances of the `Buffer` class, and [`Uint8Array`][]s in general, +Instances of `Buffer`, and instances of [`Uint8Array`][] in general, are similar to arrays of integers from `0` to `255`, but correspond to fixed-sized blocks of memory and cannot contain any other values. The size of a `Buffer` is established when it is created and cannot be changed.