Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/api/fs.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/fs.md b/doc/api/fs.md
index b3575145eaa..42aaf1e3c79 100644
--- a/doc/api/fs.md
+++ b/doc/api/fs.md
@@ -6752,7 +6752,7 @@ readFileSync(new URL('file:///tmp/hello'));
On Windows, `file:` {URL}s with a host name convert to UNC paths, while `file:`
{URL}s with drive letters convert to local absolute paths. `file:` {URL}s
-without a host name nor a drive letter will result in an error:
+with no host name and no drive letter will result in an error:
```mjs
import { readFileSync } from 'fs';