From 70c7a1c71912da595170018b2f40a9cf29537a8e Mon Sep 17 00:00:00 2001 From: AlphaDio Date: Wed, 15 Dec 2021 23:59:47 +0100 Subject: [PATCH 1/2] doc: fix closing parenthesis --- 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 c8fa23cf7c4228..82e3890f150611 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) are required. ## Synchronous example From 512ccffdff6090d787b819cb0d02fd082e1385c2 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Wed, 15 Dec 2021 17:32:36 -0800 Subject: [PATCH 2/2] Update doc/api/fs.md Co-authored-by: mscdex --- 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 82e3890f150611..a3b069913ff38d 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