summaryrefslogtreecommitdiff
path: root/doc/api/stream.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/stream.md')
-rw-r--r--doc/api/stream.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/stream.md b/doc/api/stream.md
index d2d0c4487e..83fb13d71e 100644
--- a/doc/api/stream.md
+++ b/doc/api/stream.md
@@ -490,7 +490,7 @@ function parseHeader(stream, callback) {
var split = str.split(/\n\n/);
header += split.shift();
var remaining = split.join('\n\n');
- var buf = new Buffer(remaining, 'utf8');
+ var buf = Buffer.from(remaining, 'utf8');
if (buf.length)
stream.unshift(buf);
stream.removeListener('error', callback);
@@ -985,7 +985,7 @@ Counter.prototype._read = function() {
this.push(null);
else {
var str = '' + i;
- var buf = new Buffer(str, 'ascii');
+ var buf = Buffer.from(str, 'ascii');
this.push(buf);
}
};