Doc fix for fs.write
authorTrevor Burnham <trevor@databraid.com>
Sat, 19 Mar 2011 14:27:25 +0000 (10:27 -0400)
committerRyan Dahl <ry@tinyclouds.org>
Tue, 22 Mar 2011 21:34:25 +0000 (14:34 -0700)
Closes GH-808
Closes GH-811

doc/api/fs.markdown

index 0b06533..00a347a 100644 (file)
@@ -230,6 +230,10 @@ See pwrite(2).
 The callback will be given two arguments `(err, written)` where `written`
 specifies how many _bytes_ were written.
 
+Note that it is unsafe to use `fs.write` multiple times on the same file
+without waiting for the callback. For this scenario,
+`fs.createWriteStream` is strongly recommended.
+
 ### fs.writeSync(fd, buffer, offset, length, position)
 
 Synchronous version of buffer-based `fs.write()`. Returns the number of bytes