@@ -260,7 +260,7 @@ changes:
260
260
was not a string.
261
261
- version: v11.4.0
262
262
pr-url: https://github.com/nodejs/node/pull/23708
263
- description: The `%d`, `%f` and `%i` specifiers now support Symbols
263
+ description: The `%d`, `%f`, and `%i` specifiers now support Symbols
264
264
properly.
265
265
- version: v11.4.0
266
266
pr-url: https://github.com/nodejs/node/pull/24806
@@ -582,7 +582,7 @@ changes:
582
582
* ` showProxy ` {boolean} If ` true ` , ` Proxy ` inspection includes
583
583
the [ ` target ` and ` handler ` ] [ ] objects. ** Default:** ` false ` .
584
584
* ` maxArrayLength ` {integer} Specifies the maximum number of ` Array ` ,
585
- [ ` TypedArray ` ] [ ] , [ ` WeakMap ` ] [ ] and [ ` WeakSet ` ] [ ] elements to include when
585
+ [ ` TypedArray ` ] [ ] , [ ` WeakMap ` ] [ ] , and [ ` WeakSet ` ] [ ] elements to include when
586
586
formatting. Set to ` null ` or ` Infinity ` to show all elements. Set to ` 0 ` or
587
587
negative to show no elements. ** Default:** ` 100 ` .
588
588
* ` maxStringLength ` {integer} Specifies the maximum number of characters to
@@ -1275,7 +1275,7 @@ changes:
1275
1275
* ` ignoreBOM ` {boolean} When ` true ` , the ` TextDecoder ` will include the byte
1276
1276
order mark in the decoded result. When ` false ` , the byte order mark will
1277
1277
be removed from the output. This option is only used when ` encoding ` is
1278
- ` 'utf-8' ` , ` 'utf-16be' ` or ` 'utf-16le' ` . ** Default:** ` false ` .
1278
+ ` 'utf-8' ` , ` 'utf-16be' ` , or ` 'utf-16le' ` . ** Default:** ` false ` .
1279
1279
1280
1280
Creates a new ` TextDecoder ` instance. The ` encoding ` may specify one of the
1281
1281
supported encodings or an alias.
@@ -1284,7 +1284,7 @@ The `TextDecoder` class is also available on the global object.
1284
1284
1285
1285
### ` textDecoder.decode([input[, options]]) `
1286
1286
1287
- * ` input ` {ArrayBuffer|DataView|TypedArray} An ` ArrayBuffer ` , ` DataView ` or
1287
+ * ` input ` {ArrayBuffer|DataView|TypedArray} An ` ArrayBuffer ` , ` DataView ` , or
1288
1288
` TypedArray ` instance containing the encoded data.
1289
1289
* ` options ` {Object}
1290
1290
* ` stream ` {boolean} ` true ` if additional chunks of data are expected.
0 commit comments