Skip to content

Commit 7bedcfd

Browse files
authored
doc: fix typo
PR-URL: #56125 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Richard Lau <[email protected]>
1 parent fe12b01 commit 7bedcfd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/changelogs/CHANGELOG_V22.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ When a `Buffer` is created using a resizable `ArrayBuffer`, the `Buffer` length
8080
```js
8181
const ab = new ArrayBuffer(10, { maxByteLength: 20 });
8282
const buffer = Buffer.from(ab);
83-
console.log(buffer.byteLength); 10
83+
console.log(buffer.byteLength); // 10
8484
ab.resize(15);
85-
console.log(buffer.byteLength); 15
85+
console.log(buffer.byteLength); // 15
8686
ab.resize(5);
87-
console.log(buffer.byteLength); 5
87+
console.log(buffer.byteLength); // 5
8888
```
8989

9090
Contributed by James Snell in [#55377](https://github.com/nodejs/node/pull/55377)

0 commit comments

Comments
 (0)