Skip to content

Commit

Permalink
doc: fix misleading ASCII comments
Browse files Browse the repository at this point in the history
PR-URL: #11657
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com>
  • Loading branch information
rahatarmanahmed authored and MylesBorins committed Apr 17, 2017
1 parent 9ecc2c9 commit 91d694e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions doc/api/buffer.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ const buf3 = Buffer.allocUnsafe(10);
// Creates a Buffer containing [0x1, 0x2, 0x3].
const buf4 = Buffer.from([1, 2, 3]);

// Creates a Buffer containing ASCII bytes [0x74, 0x65, 0x73, 0x74].
const buf5 = Buffer.from('test');

// Creates a Buffer containing UTF-8 bytes [0x74, 0xc3, 0xa9, 0x73, 0x74].
const buf6 = Buffer.from('tést', 'utf8');
const buf5 = Buffer.from('tést');

// Creates a Buffer containing Latin-1 bytes [0x74, 0xe9, 0x73, 0x74].
const buf6 = Buffer.from('tést', 'latin-1');
```

## `Buffer.from()`, `Buffer.alloc()`, and `Buffer.allocUnsafe()`
Expand Down Expand Up @@ -309,7 +309,7 @@ Allocates a new `Buffer` using an `array` of octets.
Example:

```js
// Creates a new Buffer containing the ASCII bytes of the string 'buffer'
// Creates a new Buffer containing the UTF-8 bytes of the string 'buffer'
const buf = new Buffer([0x62, 0x75, 0x66, 0x66, 0x65, 0x72]);
```

Expand Down Expand Up @@ -716,7 +716,7 @@ Allocates a new `Buffer` using an `array` of octets.
Example:

```js
// Creates a new Buffer containing ASCII bytes of the string 'buffer'
// Creates a new Buffer containing UTF-8 bytes of the string 'buffer'
const buf = Buffer.from([0x62, 0x75, 0x66, 0x66, 0x65, 0x72]);
```

Expand Down

0 comments on commit 91d694e

Please sign in to comment.