Skip to content

Commit a0074e2

Browse files
Olan Byrneevanlucas
Olan Byrne
authored andcommitted
doc: clarify buffer toString docs.
Fixes: #8971 PR-URL: #8984 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 0ce0abf commit a0074e2

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

doc/api/buffer.md

+14-10
Original file line numberDiff line numberDiff line change
@@ -1809,12 +1809,13 @@ added: v0.1.90
18091809
-->
18101810

18111811
* `encoding` {String} The character encoding to decode to. **Default:** `'utf8'`
1812-
* `start` {Integer} Where to start decoding. **Default:** `0`
1813-
* `end` {Integer} Where to stop decoding (not inclusive). **Default:** [`buf.length`]
1812+
* `start` {Integer} The byte offset to start decoding at. **Default:** `0`
1813+
* `end` {Integer} The byte offset to stop decoding at (not inclusive).
1814+
**Default:** [`buf.length`]
18141815
* Return: {String}
18151816

1816-
Decodes `buf` to a string according to the specified character encoding in `encoding`.
1817-
`start` and `end` may be passed to decode only a subset of `buf`.
1817+
Decodes `buf` to a string according to the specified character encoding in
1818+
`encoding`. `start` and `end` may be passed to decode only a subset of `buf`.
18181819

18191820
Examples:
18201821

@@ -1827,19 +1828,22 @@ for (var i = 0 ; i < 26 ; i++) {
18271828
}
18281829

18291830
// Prints: abcdefghijklmnopqrstuvwxyz
1830-
console.log(buf.toString('ascii'));
1831+
console.log(buf1.toString('ascii'));
18311832

18321833
// Prints: abcde
1833-
console.log(buf.toString('ascii', 0, 5));
1834+
console.log(buf1.toString('ascii', 0, 5));
18341835

18351836

18361837
const buf2 = Buffer.from('tést');
18371838

1838-
// Prints: tés
1839-
console.log(buf.toString('utf8', 0, 3));
1839+
// Prints: 74c3a97374
1840+
console.log(buf2.toString('hex'));
1841+
1842+
// Prints: té
1843+
console.log(buf2.toString('utf8', 0, 3));
18401844

1841-
// Prints: tés
1842-
console.log(buf.toString(undefined, 0, 3));
1845+
// Prints:
1846+
console.log(buf2.toString(undefined, 0, 3));
18431847
```
18441848

18451849
### buf.toJSON()

0 commit comments

Comments
 (0)