From cd0c06a400ea5d28fcdd81e515f1793805cd0cfd Mon Sep 17 00:00:00 2001 From: AlphaDio Date: Thu, 16 Dec 2021 07:52:52 +0100 Subject: [PATCH] doc: fix closing parenthesis PR-URL: https://github.com/nodejs/node/pull/41190 Reviewed-By: Rich Trott Reviewed-By: Richard Lau Reviewed-By: Derek Lewis Reviewed-By: Mohammed Keyvanzadeh --- 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 89a5a21ecc13fd..1a5090d6c8b8ed 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -91,7 +91,7 @@ unlink('/tmp/hello', (err) => { The callback-based versions of the `fs` module APIs are preferable over the use of the promise APIs when maximal performance (both in terms of -execution time and memory allocation are required). +execution time and memory allocation) is required. ## Synchronous example