@@ -384,7 +384,8 @@ fs.appendFile('message.txt', 'data to append', 'utf8', callback);
|
384 | 384 | |
385 | 385 | Any specified file descriptor has to have been opened for appending. |
386 | 386 | |
387 | | -_Note: Specified file descriptors will not be closed automatically._ |
| 387 | +_Note: If a file descriptor is specified as the `file`, it will not be closed |
| 388 | +automatically._ |
388 | 389 | |
389 | 390 | ## fs.appendFileSync(file, data[, options]) |
390 | 391 | <!-- YAML |
@@ -1136,7 +1137,8 @@ fs.readFile('/etc/passwd', 'utf8', callback);
|
1136 | 1137 | |
1137 | 1138 | Any specified file descriptor has to support reading. |
1138 | 1139 | |
1139 | | -_Note: Specified file descriptors will not be closed automatically._ |
| 1140 | +_Note: If a file descriptor is specified as the `file`, it will not be closed |
| 1141 | +automatically._ |
1140 | 1142 | |
1141 | 1143 | ## fs.readFileSync(file[, options]) |
1142 | 1144 | <!-- YAML |
@@ -1671,7 +1673,8 @@ Note that it is unsafe to use `fs.writeFile` multiple times on the same file
|
1671 | 1673 | without waiting for the callback. For this scenario, |
1672 | 1674 | `fs.createWriteStream` is strongly recommended. |
1673 | 1675 | |
1674 | | -_Note: Specified file descriptors will not be closed automatically._ |
| 1676 | +_Note: If a file descriptor is specified as the `file`, it will not be closed |
| 1677 | +automatically._ |
1675 | 1678 | |
1676 | 1679 | ## fs.writeFileSync(file, data[, options]) |
1677 | 1680 | <!-- YAML |
|