Fix typo for fs.write docs
authorBrian White <mscdex@gmail.com>
Sat, 8 Oct 2011 12:00:43 +0000 (09:00 -0300)
committerkoichik <koichik@improvement.jp>
Sun, 9 Oct 2011 07:51:42 +0000 (16:51 +0900)
Fixes #1843.

doc/api/fs.markdown

index 7f8bff9..7fd77fc 100644 (file)
@@ -296,7 +296,7 @@ current position.
 See pwrite(2).
 
 The callback will be given three arguments `(err, written, buffer)` where `written`
-specifies how many _bytes_ were written into `buffer`.
+specifies how many _bytes_ were written from `buffer`.
 
 Note that it is unsafe to use `fs.write` multiple times on the same file
 without waiting for the callback. For this scenario,