Fix typo for fs.write docs

Fixes #1843.
This commit is contained in:
Brian White
2011-10-08 09:00:43 -03:00
committed by koichik
parent 007ddcd2cd
commit eb40dcb097

View 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,