From eb40dcb0974bbf845a9dae853524452b95da3bd9 Mon Sep 17 00:00:00 2001 From: Brian White Date: Sat, 8 Oct 2011 09:00:43 -0300 Subject: [PATCH] Fix typo for fs.write docs Fixes #1843. --- doc/api/fs.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,