@@ -863,22 +863,22 @@ In classes that extend the Readable class, make sure to call the
863863Readable constructor so that the buffering settings can be properly
864864initialized.
865865
866- #### readable._ read(size)
866+ #### readable.\ _ read(size)
867867
868868* ` size ` {Number} Number of bytes to read asynchronously
869869
870870Note: ** Implement this method, but do NOT call it directly.**
871871
872872This method is prefixed with an underscore because it is internal to the
873873class that defines it and should only be called by the internal Readable
874- class methods. All Readable stream implementations must provide a _ read
874+ class methods. All Readable stream implementations must provide a \ _ read
875875method to fetch data from the underlying resource.
876876
877- When _ read is called, if data is available from the resource, ` _read ` should
877+ When \ _ read is called, if data is available from the resource, ` _read ` should
878878start pushing that data into the read queue by calling ` this.push(dataChunk) ` .
879879` _read ` should continue reading from the resource and pushing data until push
880880returns false, at which point it should stop reading from the resource. Only
881- when _ read is called again after it has stopped should it start reading
881+ when \ _ read is called again after it has stopped should it start reading
882882more data from the resource and pushing that data onto the queue.
883883
884884Note: once the ` _read() ` method is called, it will not be called again until
@@ -1127,7 +1127,7 @@ and Readable classes respectively. The `'finish'` event is fired after
11271127` end ` is fired after all data has been output which is after the callback
11281128in ` _flush ` has been called.
11291129
1130- #### transform._ flush(callback)
1130+ #### transform.\ _ flush(callback)
11311131
11321132* ` callback ` {Function} Call this function (optionally with an error
11331133 argument) when you are done flushing any remaining data.
@@ -1154,7 +1154,7 @@ the class that defines it, and should not be called directly by user
11541154programs. However, you ** are** expected to override this method in
11551155your own extension classes.
11561156
1157- #### transform._ transform(chunk, encoding, callback)
1157+ #### transform.\ _ transform(chunk, encoding, callback)
11581158
11591159* ` chunk ` {Buffer | String} The chunk to be transformed. Will ** always**
11601160 be a buffer unless the ` decodeStrings ` option was set to ` false ` .
@@ -1309,7 +1309,7 @@ In classes that extend the Writable class, make sure to call the
13091309constructor so that the buffering settings can be properly
13101310initialized.
13111311
1312- #### writable._ write(chunk, encoding, callback)
1312+ #### writable.\ _ write(chunk, encoding, callback)
13131313
13141314* ` chunk ` {Buffer | String} The chunk to be written. Will ** always**
13151315 be a buffer unless the ` decodeStrings ` option was set to ` false ` .
@@ -1342,7 +1342,7 @@ the class that defines it, and should not be called directly by user
13421342programs. However, you ** are** expected to override this method in
13431343your own extension classes.
13441344
1345- #### writable._ writev(chunks, callback)
1345+ #### writable.\ _ writev(chunks, callback)
13461346
13471347* ` chunks ` {Array} The chunks to be written. Each chunk has following
13481348 format: ` { chunk: ..., encoding: ... } ` .
0 commit comments