Skip to content

Commit

Permalink
doc: add support encoding link on string_decoder.md
Browse files Browse the repository at this point in the history
PR-URL: #31911
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: Benjamin Gruenbaum <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Ruben Bridgewater <[email protected]>
Reviewed-By: James M Snell <[email protected]>
  • Loading branch information
himself65 authored and addaleax committed Mar 11, 2020
1 parent 8790db6 commit ce8f5ee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doc/api/string_decoder.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ console.log(decoder.end(Buffer.from([0xAC])));
added: v0.1.99
-->

* `encoding` {string} The character encoding the `StringDecoder` will use.
* `encoding` {string} The character [encoding][] the `StringDecoder` will use.
**Default:** `'utf8'`.

Creates a new `StringDecoder` instance.
Expand Down Expand Up @@ -88,3 +88,5 @@ Returns a decoded string, ensuring that any incomplete multibyte characters at
the end of the `Buffer`, or `TypedArray`, or `DataView` are omitted from the
returned string and stored in an internal buffer for the next call to
`stringDecoder.write()` or `stringDecoder.end()`.

[encoding]: buffer.html#buffer_buffers_and_character_encodings

0 comments on commit ce8f5ee

Please sign in to comment.