Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update buffer.md #33547

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/api/buffer.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
tomanagle marked this conversation as resolved.
Show resolved Hide resolved
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.
Expand Down