From 7de3a5b1b7f37c256c35e76fdd211b84e3586ef4 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sun, 2 Jun 2019 17:08:53 +0200 Subject: [PATCH] doc: remove "encouraged" as hedging in fs.md --- doc/api/fs.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/fs.md b/doc/api/fs.md index d2506d28e33cce..87cd1175c585f9 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -73,9 +73,9 @@ fs.rename('/tmp/hello', '/tmp/world', (err) => { }); ``` -In busy processes, the programmer is _strongly encouraged_ to use the -asynchronous versions of these calls. The synchronous versions will block -the entire process until they complete — halting all connections. +In busy processes, use the asynchronous versions of these calls. The synchronous +versions will block the entire process until they complete, halting all +connections. While it is not recommended, most fs functions allow the callback argument to be omitted, in which case a default callback is used that rethrows errors. To