Skip to content

Commit d7a8c07

Browse files
Trottjuanarbol
authored andcommitted
doc: use "file system" instead of "filesystem"
#44004 (comment) PR-URL: #46178 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Harshitha K P <harshitha014@gmail.com>
1 parent 277d9da commit d7a8c07

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

doc/api/addons.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ involving knowledge of several components and APIs:
2727
threads and all of the asynchronous behaviors of the platform. It also
2828
serves as a cross-platform abstraction library, giving easy, POSIX-like
2929
access across all major operating systems to many common system tasks, such
30-
as interacting with the filesystem, sockets, timers, and system events. libuv
30+
as interacting with the file system, sockets, timers, and system events. libuv
3131
also provides a threading abstraction similar to POSIX threads for
3232
more sophisticated asynchronous addons that need to move beyond the
3333
standard event loop. Addon authors should

doc/api/fs.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1139,7 +1139,7 @@ changes:
11391139
* `prefix` {string}
11401140
* `options` {string|Object}
11411141
* `encoding` {string} **Default:** `'utf8'`
1142-
* Returns: {Promise} Fulfills with a string containing the filesystem path
1142+
* Returns: {Promise} Fulfills with a string containing the file system path
11431143
of the newly created temporary directory.
11441144
11451145
Creates a unique temporary directory. A unique directory name is generated by
@@ -4382,7 +4382,7 @@ renamed. An `EPERM` error is reported when the watched directory is deleted.
43824382
<!--type=misc-->
43834383
43844384
This feature depends on the underlying operating system providing a way
4385-
to be notified of filesystem changes.
4385+
to be notified of file system changes.
43864386
43874387
* On Linux systems, this uses [`inotify(7)`][].
43884388
* On BSD systems, this uses [`kqueue(2)`][].
@@ -6898,7 +6898,7 @@ The times in the stat object have the following semantics:
68986898
link(2), mknod(2), rename(2), unlink(2), utimes(2),
68996899
read(2), and write(2) system calls.
69006900
* `birthtime` "Birth Time": Time of file creation. Set once when the
6901-
file is created. On filesystems where birthtime is not available,
6901+
file is created. On file systems where birthtime is not available,
69026902
this field may instead hold either the `ctime` or
69036903
`1970-01-01T00:00Z` (ie, Unix epoch timestamp `0`). This value may be greater
69046904
than `atime` or `mtime` in this case. On Darwin and other FreeBSD variants,

doc/api/modules.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ require(X) from module at path Y
191191
a. return the core module
192192
b. STOP
193193
2. If X begins with '/'
194-
a. set Y to be the filesystem root
194+
a. set Y to be the file system root
195195
3. If X begins with './' or '/' or '../'
196196
a. LOAD_AS_FILE(Y + X)
197197
b. LOAD_AS_DIRECTORY(Y + X)

doc/api/net.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ sockets on other operating systems.
2929
[`socket.connect()`][] take a `path` parameter to identify IPC endpoints.
3030

3131
On Unix, the local domain is also known as the Unix domain. The path is a
32-
filesystem pathname. It gets truncated to an OS-dependent length of
32+
file system pathname. It gets truncated to an OS-dependent length of
3333
`sizeof(sockaddr_un.sun_path) - 1`. Typical values are 107 bytes on Linux and
3434
103 bytes on macOS. If a Node.js API abstraction creates the Unix domain socket,
3535
it will unlink the Unix domain socket as well. For example,
3636
[`net.createServer()`][] may create a Unix domain socket and
3737
[`server.close()`][] will unlink it. But if a user creates the Unix domain
3838
socket outside of these abstractions, the user will need to remove it. The same
3939
applies when a Node.js API creates a Unix domain socket but the program then
40-
crashes. In short, a Unix domain socket will be visible in the filesystem and
40+
crashes. In short, a Unix domain socket will be visible in the file system and
4141
will persist until unlinked.
4242

4343
On Windows, the local domain is implemented using a named pipe. The path _must_

doc/api/report.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -567,9 +567,9 @@ In cases where standard streams are used, the value in `directory` is ignored.
567567
URLs are not supported. Defaults to a composite filename that contains
568568
timestamp, PID, and sequence number.
569569

570-
`directory` specifies the filesystem directory where the report will be written.
571-
URLs are not supported. Defaults to the current working directory of the
572-
Node.js process.
570+
`directory` specifies the file system directory where the report will be
571+
written. URLs are not supported. Defaults to the current working directory of
572+
the Node.js process.
573573

574574
```js
575575
// Trigger report only on uncaught exceptions.

0 commit comments

Comments
 (0)