@@ -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
@@ -586,7 +586,7 @@ changes:
586
586
* ` showProxy ` {boolean} If ` true ` , ` Proxy ` inspection includes
587
587
the [ ` target ` and ` handler ` ] [ ] objects. ** Default:** ` false ` .
588
588
* ` maxArrayLength ` {integer} Specifies the maximum number of ` Array ` ,
589
- [ ` TypedArray ` ] [ ] , [ ` WeakMap ` ] [ ] and [ ` WeakSet ` ] [ ] elements to include when
589
+ [ ` TypedArray ` ] [ ] , [ ` WeakMap ` ] [ ] , and [ ` WeakSet ` ] [ ] elements to include when
590
590
formatting. Set to ` null ` or ` Infinity ` to show all elements. Set to ` 0 ` or
591
591
negative to show no elements. ** Default:** ` 100 ` .
592
592
* ` maxStringLength ` {integer} Specifies the maximum number of characters to
@@ -1281,7 +1281,7 @@ changes:
1281
1281
* ` ignoreBOM ` {boolean} When ` true ` , the ` TextDecoder ` will include the byte
1282
1282
order mark in the decoded result. When ` false ` , the byte order mark will
1283
1283
be removed from the output. This option is only used when ` encoding ` is
1284
- ` 'utf-8' ` , ` 'utf-16be' ` or ` 'utf-16le' ` . ** Default:** ` false ` .
1284
+ ` 'utf-8' ` , ` 'utf-16be' ` , or ` 'utf-16le' ` . ** Default:** ` false ` .
1285
1285
1286
1286
Creates a new ` TextDecoder ` instance. The ` encoding ` may specify one of the
1287
1287
supported encodings or an alias.
@@ -1290,7 +1290,7 @@ The `TextDecoder` class is also available on the global object.
1290
1290
1291
1291
### ` textDecoder.decode([input[, options]]) `
1292
1292
1293
- * ` input ` {ArrayBuffer|DataView|TypedArray} An ` ArrayBuffer ` , ` DataView ` or
1293
+ * ` input ` {ArrayBuffer|DataView|TypedArray} An ` ArrayBuffer ` , ` DataView ` , or
1294
1294
` TypedArray ` instance containing the encoded data.
1295
1295
* ` options ` {Object}
1296
1296
* ` stream ` {boolean} ` true ` if additional chunks of data are expected.
0 commit comments