@@ -2293,7 +2293,7 @@ Returns the maximum number of bytes that will be returned when
2293
2293
` buf.inspect() ` is called. This can be overridden by user modules. See
2294
2294
[ ` util.inspect() ` ] for more details on ` buf.inspect() ` behavior.
2295
2295
2296
- Note that this is a property on the ` buffer ` module as returned by
2296
+ Note that this is a property on the ` buffer ` module returned by
2297
2297
` require('buffer') ` , not on the ` Buffer ` global or a ` Buffer ` instance.
2298
2298
2299
2299
## buffer.kMaxLength
@@ -2306,7 +2306,7 @@ added: v3.0.0
2306
2306
On 32-bit architectures, this value is ` (2^30)-1 ` (~ 1GB).
2307
2307
On 64-bit architectures, this value is ` (2^31)-1 ` (~ 2GB).
2308
2308
2309
- Note that this is a property on the ` buffer ` module as returned by
2309
+ Note that this is a property on the ` buffer ` module returned by
2310
2310
` require('buffer') ` , not on the ` Buffer ` global or a ` Buffer ` instance.
2311
2311
2312
2312
## buffer.transcode(source, fromEnc, toEnc)
@@ -2336,7 +2336,7 @@ console.log(newBuf.toString('ascii'));
2336
2336
Because the Euro (` € ` ) sign is not representable in US-ASCII, it is replaced
2337
2337
with ` ? ` in the transcoded ` Buffer ` .
2338
2338
2339
- Note that this is a property on the ` buffer ` module as returned by
2339
+ Note that this is a property on the ` buffer ` module returned by
2340
2340
` require('buffer') ` , not on the ` Buffer ` global or a ` Buffer ` instance.
2341
2341
2342
2342
## Class: SlowBuffer
0 commit comments