summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/concat-stream/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/concat-stream/readme.md')
-rw-r--r--deps/npm/node_modules/concat-stream/readme.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/npm/node_modules/concat-stream/readme.md b/deps/npm/node_modules/concat-stream/readme.md
index d442f840cb..7aa19c4fb1 100644
--- a/deps/npm/node_modules/concat-stream/readme.md
+++ b/deps/npm/node_modules/concat-stream/readme.md
@@ -77,7 +77,7 @@ var concat = require('concat-stream')
Return a `writable` stream that will fire `cb(data)` with all of the data that
was written to the stream. Data can be written to `writable` as strings,
-Buffers, arrays of byte integers, and Uint8Arrays.
+Buffers, arrays of byte integers, and Uint8Arrays.
By default `concat-stream` will give you back the same data type as the type of the first buffer written to the stream. Use `opts.encoding` to set what format `data` should be returned as, e.g. if you if you don't want to rely on the built-in type checking or for some other reason.