From 394c3562349665ea44a338568c85106c2820c0d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Arboleda?= Date: Sun, 2 Feb 2020 20:22:17 -0500 Subject: [PATCH] doc: fix typo on fs docs --- 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 9ed072ad1e4871..cfa654a3671b3a 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -1949,7 +1949,7 @@ Node.js callbacks. `fs.existsSync()` does not use a callback. ```js if (fs.existsSync('/etc/passwd')) { - console.log('The file exists.'); + console.log('The path exists.'); } ```