From c834804792d79a2c4eaba433b1e457b06e1a51ac Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 9 Oct 2020 04:16:03 -0700 Subject: [PATCH] doc: remove "Synchronously" for fsPromises.rm() Because it's a promise, fsPromises.rm() is asynchronous. That is implicit in every other fsPromises entry, so this removes "Synchronously" rather than replacing it with "Asynchronously". --- doc/api/fs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/fs.md b/doc/api/fs.md index 3afadd145faa09..f627b03c72e4d3 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -5567,7 +5567,7 @@ added: REPLACEME retries. This option is ignored if the `recursive` option is not `true`. **Default:** `100`. -Synchronously removes files and directories (modeled on the standard POSIX `rm` +Removes files and directories (modeled on the standard POSIX `rm` utility). Resolves the `Promise` with no arguments on success. ### `fsPromises.stat(path[, options])`