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'`.