From 2a2005c89c32baec8054e61df5da58ea8e955699 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sun, 2 Jun 2019 17:12:10 +0200 Subject: [PATCH] doc: remove "strongly recommended" as hedging in fs.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/28028 Reviewed-By: Michaƫl Zasso Reviewed-By: Colin Ihrig Reviewed-By: Trivikram Kamat 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 d2506d28e3..9d4c335029 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -4020,7 +4020,7 @@ at the current position. See pwrite(2). It is unsafe to use `filehandle.write()` multiple times on the same file without waiting for the `Promise` to be resolved (or rejected). For this -scenario, [`fs.createWriteStream()`][] is strongly recommended. +scenario, use [`fs.createWriteStream()`][]. On Linux, positional writes do not work when the file is opened in append mode. The kernel ignores the position argument and always appends the data to @@ -4051,7 +4051,7 @@ will be written at the current position. See pwrite(2). It is unsafe to use `filehandle.write()` multiple times on the same file without waiting for the `Promise` to be resolved (or rejected). For this -scenario, [`fs.createWriteStream()`][] is strongly recommended. +scenario, use [`fs.createWriteStream()`][]. On Linux, positional writes do not work when the file is opened in append mode. The kernel ignores the position argument and always appends the data to