From 2f894357f52caced59a60cc3743ff5a784fbccb1 Mon Sep 17 00:00:00 2001 From: warlock1996 Date: Mon, 4 Oct 2021 17:44:33 +0500 Subject: [PATCH] doc: improved phrasing in fs.md --- 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 6c2ff61840f630..e8665852920297 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -6751,7 +6751,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 or a drive letter will not result in an error: +with no host name and no drive letter will not result in an error: ```mjs import { readFileSync } from 'fs';