summaryrefslogtreecommitdiff
path: root/doc/api/fs.md
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2019-06-02 17:12:10 +0200
committerZYSzys <zyszys98@gmail.com>2019-06-05 23:14:45 +0800
commit2a2005c89c32baec8054e61df5da58ea8e955699 (patch)
tree3c255b23c95798739deba719ca9d9d4e403a59c7 /doc/api/fs.md
parent8017e7c17f9338ea350eb2c5e1ce4539fae2a490 (diff)
downloadandroid-node-v8-2a2005c89c32baec8054e61df5da58ea8e955699.tar.gz
android-node-v8-2a2005c89c32baec8054e61df5da58ea8e955699.tar.bz2
android-node-v8-2a2005c89c32baec8054e61df5da58ea8e955699.zip
doc: remove "strongly recommended" as hedging in fs.md
PR-URL: https://github.com/nodejs/node/pull/28028 Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'doc/api/fs.md')
-rw-r--r--doc/api/fs.md4
1 files 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