From 6c091c7878c7a41507061b99c0102acf7da53fb4 Mon Sep 17 00:00:00 2001 From: Arslan Ali Date: Wed, 29 Sep 2021 13:01:54 +0500 Subject: [PATCH] doc: improve phrasing in fs.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/40255 Reviewed-By: Antoine du Hamel Reviewed-By: Tobias Nießen Reviewed-By: James M Snell --- 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 09489b76c3359b..f09063a575d5f2 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -6686,7 +6686,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';