Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f18ab94

Browse filesBrowse files
TrottRafaelGSS
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 6c8a81d commit f18ab94
Copy full SHA for f18ab94

File tree

Expand file treeCollapse file tree

5 files changed

+10
-10
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

5 files changed

+10
-10
lines changed
Open diff view settings
Collapse file

‎doc/api/addons.md‎

Copy file name to clipboardExpand all lines: doc/api/addons.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
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
Collapse file

‎doc/api/fs.md‎

Copy file name to clipboardExpand all lines: doc/api/fs.md
+3-3Lines changed: 3 additions & 3 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -1145,7 +1145,7 @@ changes:
11451145
* `prefix` {string}
11461146
* `options` {string|Object}
11471147
* `encoding` {string} **Default:** `'utf8'`
1148-
* Returns: {Promise} Fulfills with a string containing the filesystem path
1148+
* Returns: {Promise} Fulfills with a string containing the file system path
11491149
of the newly created temporary directory.
11501150
11511151
Creates a unique temporary directory. A unique directory name is generated by
@@ -4400,7 +4400,7 @@ renamed. An `EPERM` error is reported when the watched directory is deleted.
44004400
<!--type=misc-->
44014401
44024402
This feature depends on the underlying operating system providing a way
4403-
to be notified of filesystem changes.
4403+
to be notified of file system changes.
44044404
44054405
* On Linux systems, this uses [`inotify(7)`][].
44064406
* On BSD systems, this uses [`kqueue(2)`][].
@@ -6934,7 +6934,7 @@ The times in the stat object have the following semantics:
69346934
link(2), mknod(2), rename(2), unlink(2), utimes(2),
69356935
read(2), and write(2) system calls.
69366936
* `birthtime` "Birth Time": Time of file creation. Set once when the
6937-
file is created. On filesystems where birthtime is not available,
6937+
file is created. On file systems where birthtime is not available,
69386938
this field may instead hold either the `ctime` or
69396939
`1970-01-01T00:00Z` (ie, Unix epoch timestamp `0`). This value may be greater
69406940
than `atime` or `mtime` in this case. On Darwin and other FreeBSD variants,
Collapse file

‎doc/api/modules.md‎

Copy file name to clipboardExpand all lines: doc/api/modules.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
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)
Collapse file

‎doc/api/net.md‎

Copy file name to clipboardExpand all lines: doc/api/net.md
+2-2Lines changed: 2 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
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_
Collapse file

‎doc/api/report.md‎

Copy file name to clipboardExpand all lines: doc/api/report.md
+3-3Lines changed: 3 additions & 3 deletions
  • Display the source diff
  • Display the rich diff
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.