From 15d156e3ecd649042eee878d2bf78f9b04a57f7a Mon Sep 17 00:00:00 2001 From: Rudolf Meijering Date: Wed, 11 Feb 2015 17:37:23 +0200 Subject: [PATCH] doc: fix wording in fs.appendFile PR-URL: https://github.com/iojs/io.js/pull/801 Reviewed-By: Jeremiah Senkpiel --- 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 cfb35b96fb419e..71685f8ff3acb5 100644 --- a/doc/api/fs.markdown +++ b/doc/api/fs.markdown @@ -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: