From f60dd04e202b1e9e1a9766d72f115ba0fbf119e2 Mon Sep 17 00:00:00 2001 From: Rudolf Meijering Date: Wed, 11 Feb 2015 17:37:23 +0200 Subject: [PATCH] doc: fix grammar in fs.appendFile Minor fix to the grammar of fs.appendFile --- 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 c6bfa2456bc17d..081cb2b4cd6220 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: