From 3ab9b92e90e4bb3ed68457fcb95bc32f17586f3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Kooi?= Date: Sat, 21 Feb 2015 20:10:03 +0100 Subject: [PATCH] doc: fix stream `_writev` header size PR-URL: https://github.com/iojs/io.js/pull/916 Reviewed-By: Ben Noordhuis --- 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 6df99abae9..e8dc938b4a 100644 --- a/doc/api/stream.markdown +++ b/doc/api/stream.markdown @@ -1067,7 +1067,7 @@ the class that defines it, and should not be called directly by user programs. However, you **are** expected to override this method in your own extension classes. -### writable.\_writev(chunks, callback) +#### writable.\_writev(chunks, callback) * `chunks` {Array} The chunks to be written. Each chunk has following format: `{ chunk: ..., encoding: ... }`.