doc: fix wording in fs.appendFile
authorRudolf Meijering <skaapgif@gmail.com>
Wed, 11 Feb 2015 15:37:23 +0000 (17:37 +0200)
committerJeremiah Senkpiel <fishrock123@rocketmail.com>
Wed, 11 Feb 2015 15:42:25 +0000 (10:42 -0500)
PR-URL: https://github.com/iojs/io.js/pull/801
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
doc/api/fs.markdown

index cfb35b9..71685f8 100644 (file)
@@ -517,7 +517,7 @@ The synchronous version of `fs.writeFile`.
   * `flag` {String} default = `'a'`
 * `callback` {Function}
 
-Asynchronously append data to a file, creating the file if it not yet exists.
+Asynchronously append data to a file, creating the file if it does not yet exist.
 `data` can be a string or a buffer.
 
 Example: