From c25165aa0302225e52349d5be6055934d053189f Mon Sep 17 00:00:00 2001 From: Tom Nagle Date: Mon, 25 May 2020 09:23:04 +1000 Subject: [PATCH 1/2] Update buffer.md --- 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..6e59f8031de8ac 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 the `Buffer` class and [`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. From f0b0525fc3fe25fcd4e6cd69126368468cd0bccd Mon Sep 17 00:00:00 2001 From: Tom Nagle Date: Thu, 28 May 2020 08:43:26 +1000 Subject: [PATCH 2/2] Update doc/api/buffer.md Co-authored-by: Rich Trott --- 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 6e59f8031de8ac..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`][], 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.