summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorBrian White <mscdex@gmail.com>2011-10-08 09:00:43 -0300
committerkoichik <koichik@improvement.jp>2011-10-09 16:51:42 +0900
commiteb40dcb0974bbf845a9dae853524452b95da3bd9 (patch)
treeab4ee06d2d588f3b66a685dab6df922ef380ff50 /doc
parent007ddcd2cd28da1ad057c11e96d30b53a9cf567d (diff)
downloadnode-new-eb40dcb0974bbf845a9dae853524452b95da3bd9.tar.gz
Fix typo for fs.write docs
Fixes #1843.
Diffstat (limited to 'doc')
-rw-r--r--doc/api/fs.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/fs.markdown b/doc/api/fs.markdown
index 7f8bff9502..7fd77fc935 100644
--- a/doc/api/fs.markdown
+++ b/doc/api/fs.markdown
@@ -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,