From e5ce53a2177e9726d7381cd71fd7f5386b8f25c7 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 29 Apr 2016 22:17:28 -0700 Subject: [PATCH] doc: fix sentence fragment in fs doc PR-URL: https://github.com/nodejs/node/pull/6488 Reviewed-By: James M Snell Reviewed-By: Benjamin Gruenbaum Reviewed-By: Alexander Makarenko --- doc/api/fs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/fs.md b/doc/api/fs.md index 94b2da97f13c53..0de4be069daf29 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -797,8 +797,8 @@ the end of the file. _Note: The behavior of `fs.open()` is platform specific for some flags. As such, opening a directory on OS X and Linux with the `'a+'` flag - see example below - -will return an error. Whereas on Windows and FreeBSD a file descriptor will be -returned._ +will return an error. In contrast, on Windows and FreeBSD, a file descriptor +will be returned._ ```js // OS X and Linux