Skip to content

Commit 3a1cb60

Browse files
committed
squash: lint CHANGELOG_V23.md
1 parent 3486885 commit 3a1cb60

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

doc/changelogs/CHANGELOG_V23.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,11 @@ will now correctly change as the underlying `ArrayBuffer` size is changed.
176176
```js
177177
const ab = new ArrayBuffer(10, { maxByteLength: 20 });
178178
const buffer = Buffer.from(ab);
179-
console.log(buffer.byteLength); 10
179+
console.log(buffer.byteLength); // 10
180180
ab.resize(15);
181-
console.log(buffer.byteLength); 15
181+
console.log(buffer.byteLength); // 15
182182
ab.resize(5);
183-
console.log(buffer.byteLength); 5
183+
console.log(buffer.byteLength); // 5
184184
```
185185

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

eslint.config.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ export default [
4545
'benchmark/tmp/**',
4646
'doc/changelogs/CHANGELOG_V1*.md',
4747
'!doc/changelogs/CHANGELOG_V18.md',
48-
'doc/changelogs/CHANGELOG_V23.md',
4948
'lib/punycode.js',
5049
'test/.tmp.*/**',
5150
'test/addons/??_*',

0 commit comments

Comments
 (0)