@@ -1881,7 +1881,7 @@ Linux, and Windows, an error will be returned. On FreeBSD, a representation
18811881of the directory's contents will be returned.
18821882
18831883``` js
1884- // macOS, Linux and Windows
1884+ // macOS, Linux, and Windows
18851885fs .readFile (' <directory>' , (err , data ) => {
18861886 // => [Error: EISDIR: illegal operation on a directory, read <directory>]
18871887});
@@ -1929,7 +1929,7 @@ string. Otherwise it returns a buffer.
19291929behavior of ` fs.readFileSync() ` is platform-specific.
19301930
19311931``` js
1932- // macOS, Linux and Windows
1932+ // macOS, Linux, and Windows
19331933fs .readFileSync (' <directory>' );
19341934// => [Error: EISDIR: illegal operation on a directory, read <directory>]
19351935
@@ -2966,7 +2966,7 @@ The following constants are meant for use with the [`fs.Stats`][] object's
29662966 </tr >
29672967 <tr >
29682968 <td><code>S_IRWXU</code></td>
2969- <td>File mode indicating readable, writable and executable by owner.</td>
2969+ <td>File mode indicating readable, writable, and executable by owner.</td>
29702970 </tr >
29712971 <tr >
29722972 <td><code>S_IRUSR</code></td>
@@ -2982,7 +2982,7 @@ The following constants are meant for use with the [`fs.Stats`][] object's
29822982 </tr >
29832983 <tr >
29842984 <td><code>S_IRWXG</code></td>
2985- <td>File mode indicating readable, writable and executable by group.</td>
2985+ <td>File mode indicating readable, writable, and executable by group.</td>
29862986 </tr >
29872987 <tr >
29882988 <td><code>S_IRGRP</code></td>
@@ -2998,7 +2998,7 @@ The following constants are meant for use with the [`fs.Stats`][] object's
29982998 </tr >
29992999 <tr >
30003000 <td><code>S_IRWXO</code></td>
3001- <td>File mode indicating readable, writable and executable by others.</td>
3001+ <td>File mode indicating readable, writable, and executable by others.</td>
30023002 </tr >
30033003 <tr >
30043004 <td><code>S_IROTH</code></td>
0 commit comments