From d65c90b545582dfb1da4ff185c6a4870a40ca21b Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Thu, 20 Jun 2019 13:54:20 -0600 Subject: [PATCH] doc: remove "note that" from fs.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Refs: https://github.com/nodejs/remark-preset-lint-node/pull/16 PR-URL: https://github.com/nodejs/node/pull/28329 Reviewed-By: Gus Caplan Reviewed-By: Trivikram Kamat Reviewed-By: Tobias Nießen Reviewed-By: Ruben Bridgewater --- 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 f1b7e1ccbb1c60..f1e2bcb60ab98a 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -3635,8 +3635,8 @@ conditions, `fs.write()` may write only part of the buffer and will need to be retried to write the remaining data, whereas `fs.writeFile()` will retry until the data is entirely written (or an error occurs). -Since the implications of this are a common source of confusion, note that in -the file descriptor case the file is not replaced! The data is not necessarily +The implications of this are a common source of confusion. In +the file descriptor case, the file is not replaced! The data is not necessarily written to the beginning of the file, and the file's original data may remain before and/or after the newly written data.