From 21265e20d3be515733418c5eef395ccec8f5f701 Mon Sep 17 00:00:00 2001 From: Brian White Date: Wed, 23 Oct 2013 22:43:23 -0400 Subject: [PATCH] doc: streams: document default objectMode setting --- doc/api/stream.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/stream.markdown b/doc/api/stream.markdown index 76aa4e83..d750dbf 100644 --- a/doc/api/stream.markdown +++ b/doc/api/stream.markdown @@ -843,7 +843,7 @@ SimpleProtocol.prototype._read = function(n) { strings using the specified encoding. Default=null * `objectMode` {Boolean} Whether this stream should behave as a stream of objects. Meaning that stream.read(n) returns - a single value instead of a Buffer of size n + a single value instead of a Buffer of size n. Default=false In classes that extend the Readable class, make sure to call the Readable constructor so that the buffering settings can be properly -- 2.7.4