@@ -1678,13 +1678,13 @@ OR of two or more values (e.g.
16781678` fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE ` ).
16791679
16801680* ` fs.constants.COPYFILE_EXCL ` : The copy operation will fail if ` dest ` already
1681- exists.
1681+ exists.
16821682* ` fs.constants.COPYFILE_FICLONE ` : The copy operation will attempt to create a
1683- copy-on-write reflink. If the platform does not support copy-on-write, then a
1684- fallback copy mechanism is used.
1683+ copy-on-write reflink. If the platform does not support copy-on-write, then a
1684+ fallback copy mechanism is used.
16851685* ` fs.constants.COPYFILE_FICLONE_FORCE ` : The copy operation will attempt to
1686- create a copy-on-write reflink. If the platform does not support copy-on-write,
1687- then the operation will fail.
1686+ create a copy-on-write reflink. If the platform does not support
1687+ copy-on-write, then the operation will fail.
16881688
16891689``` js
16901690const fs = require (' fs' );
@@ -1727,13 +1727,13 @@ OR of two or more values (e.g.
17271727` fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE ` ).
17281728
17291729* ` fs.constants.COPYFILE_EXCL ` : The copy operation will fail if ` dest ` already
1730- exists.
1730+ exists.
17311731* ` fs.constants.COPYFILE_FICLONE ` : The copy operation will attempt to create a
1732- copy-on-write reflink. If the platform does not support copy-on-write, then a
1733- fallback copy mechanism is used.
1732+ copy-on-write reflink. If the platform does not support copy-on-write, then a
1733+ fallback copy mechanism is used.
17341734* ` fs.constants.COPYFILE_FICLONE_FORCE ` : The copy operation will attempt to
1735- create a copy-on-write reflink. If the platform does not support copy-on-write,
1736- then the operation will fail.
1735+ create a copy-on-write reflink. If the platform does not support
1736+ copy-on-write, then the operation will fail.
17371737
17381738``` js
17391739const fs = require (' fs' );
@@ -1780,7 +1780,7 @@ changes:
17801780* ` path ` {string|Buffer|URL}
17811781* ` options ` {string|Object}
17821782 * ` flags ` {string} See [ support of file system ` flags ` ] [ ] . ** Default:**
1783- ` 'r' ` .
1783+ ` 'r' ` .
17841784 * ` encoding ` {string} ** Default:** ` null `
17851785 * ` fd ` {integer} ** Default:** ` null `
17861786 * ` mode ` {integer} ** Default:** ` 0o666 `
@@ -1885,7 +1885,7 @@ changes:
18851885* ` path ` {string|Buffer|URL}
18861886* ` options ` {string|Object}
18871887 * ` flags ` {string} See [ support of file system ` flags ` ] [ ] . ** Default:**
1888- ` 'w' ` .
1888+ ` 'w' ` .
18891889 * ` encoding ` {string} ** Default:** ` 'utf8' `
18901890 * ` fd ` {integer} ** Default:** ` null `
18911891 * ` mode ` {integer} ** Default:** ` 0o666 `
@@ -3129,11 +3129,11 @@ system requests but rather the internal buffering `fs.readFile` performs.
31293129
313031301 . Any specified file descriptor has to support reading.
313131312 . If a file descriptor is specified as the ` path ` , it will not be closed
3132- automatically.
3132+ automatically.
313331333 . The reading will begin at the current position. For example, if the file
3134- already had ` 'Hello World ` ' and six bytes are read with the file descriptor,
3135- the call to ` fs.readFile() ` with the same file descriptor, would give
3136- ` 'World' ` , rather than ` 'Hello World' ` .
3134+ already had ` 'Hello World ` ' and six bytes are read with the file descriptor,
3135+ the call to ` fs.readFile() ` with the same file descriptor, would give
3136+ ` 'World' ` , rather than ` 'Hello World' ` .
31373137
31383138## ` fs.readFileSync(path[, options]) `
31393139<!-- YAML
@@ -5227,13 +5227,13 @@ OR of two or more values (e.g.
52275227` fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE ` ).
52285228
52295229* ` fs.constants.COPYFILE_EXCL ` : The copy operation will fail if ` dest ` already
5230- exists.
5230+ exists.
52315231* ` fs.constants.COPYFILE_FICLONE ` : The copy operation will attempt to create a
5232- copy-on-write reflink. If the platform does not support copy-on-write, then a
5233- fallback copy mechanism is used.
5232+ copy-on-write reflink. If the platform does not support copy-on-write, then a
5233+ fallback copy mechanism is used.
52345234* ` fs.constants.COPYFILE_FICLONE_FORCE ` : The copy operation will attempt to
5235- create a copy-on-write reflink. If the platform does not support copy-on-write,
5236- then the operation will fail.
5235+ create a copy-on-write reflink. If the platform does not support
5236+ copy-on-write, then the operation will fail.
52375237
52385238``` js
52395239const {
@@ -6133,7 +6133,7 @@ string.
61336133* ` 'wx' ` : Like ` 'w' ` but fails if the path exists.
61346134
61356135* ` 'w+' ` : Open file for reading and writing.
6136- The file is created (if it does not exist) or truncated (if it exists).
6136+ The file is created (if it does not exist) or truncated (if it exists).
61376137
61386138* ` 'wx+' ` : Like ` 'w+' ` but fails if the path exists.
61396139
0 commit comments