From 55272f458b0f7b59b1a557ed61727eb43995c08a Mon Sep 17 00:00:00 2001
From: Peter Lyons <pete@peterlyons.com>
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.
---
 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 ebffa9f02da417..fe109d2482efb1 100644
--- a/doc/api/fs.markdown
+++ b/doc/api/fs.markdown
@@ -566,7 +566,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)`.