From 6048b011e844ac460af9313368a34759418ca5cb Mon Sep 17 00:00:00 2001 From: Peter Lyons Date: Fri, 29 Jan 2016 10:58:50 -0700 Subject: [PATCH] doc: spell writable consistently Docs have 108 instances of "writable" and only 1 "writeable" so fix this one. PR-URL: https://github.com/nodejs/node/pull/4954 Reviewed-By: Jeremiah Senkpiel Reviewed-By: Colin Ihrig Reviewed-By: Roman Reiss --- 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 f72de64c38ef05..cbccc1a44e7a6a 100644 --- a/doc/api/fs.markdown +++ b/doc/api/fs.markdown @@ -528,7 +528,7 @@ The file is created if it does not exist. * `'ax+'` - Like `'a+'` but fails if `path` exists. `mode` sets the file mode (permission and sticky bits), but only if the file was -created. It defaults to `0666`, readable and writeable. +created. It defaults to `0666`, readable and writable. The callback gets two arguments `(err, fd)`.