From 3607b92134563154466f5f3f740895baa34458a5 Mon Sep 17 00:00:00 2001 From: fwio Date: Thu, 9 Nov 2023 00:46:22 +0800 Subject: [PATCH] doc: fix typo 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/50570 Reviewed-By: Marco Ippolito Reviewed-By: Tobias Nießen --- 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 8079b7cc316fec..243ab75ca72541 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -3814,7 +3814,7 @@ system requests but rather the internal buffering `fs.readFile` performs. 2. If a file descriptor is specified as the `path`, it will not be closed automatically. 3. The reading will begin at the current position. For example, if the file - already had `'Hello World`' and six bytes are read with the file descriptor, + already had `'Hello World'` and six bytes are read with the file descriptor, the call to `fs.readFile()` with the same file descriptor, would give `'World'`, rather than `'Hello World'`.