diff options
author | Brian White <mscdex@gmail.com> | 2011-10-08 09:00:43 -0300 |
---|---|---|
committer | koichik <koichik@improvement.jp> | 2011-10-09 16:51:42 +0900 |
commit | eb40dcb0974bbf845a9dae853524452b95da3bd9 (patch) | |
tree | ab4ee06d2d588f3b66a685dab6df922ef380ff50 /doc | |
parent | 007ddcd2cd28da1ad057c11e96d30b53a9cf567d (diff) | |
download | node-new-eb40dcb0974bbf845a9dae853524452b95da3bd9.tar.gz |
Fix typo for fs.write docs
Fixes #1843.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/fs.markdown | 2 |
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, |