From d7a8c076e17d7ec9a89d2b15f22143a678f73012 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 13 Jan 2023 17:10:38 -0800 Subject: [PATCH] doc: use "file system" instead of "filesystem" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/nodejs/node/pull/44004#discussion_r1067599238 PR-URL: https://github.com/nodejs/node/pull/46178 Reviewed-By: James M Snell Reviewed-By: Richard Lau Reviewed-By: Matteo Collina Reviewed-By: Ben Noordhuis Reviewed-By: Luigi Pinca Reviewed-By: Yagiz Nizipli Reviewed-By: Gerhard Stöbich Reviewed-By: Tobias Nießen Reviewed-By: Harshitha K P --- doc/api/addons.md | 2 +- doc/api/fs.md | 6 +++--- doc/api/modules.md | 2 +- doc/api/net.md | 4 ++-- doc/api/report.md | 6 +++--- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/doc/api/addons.md b/doc/api/addons.md index 1e1d4751861d04..4075158e2ae750 100644 --- a/doc/api/addons.md +++ b/doc/api/addons.md @@ -27,7 +27,7 @@ involving knowledge of several components and APIs: threads and all of the asynchronous behaviors of the platform. It also serves as a cross-platform abstraction library, giving easy, POSIX-like access across all major operating systems to many common system tasks, such - as interacting with the filesystem, sockets, timers, and system events. libuv + as interacting with the file system, sockets, timers, and system events. libuv also provides a threading abstraction similar to POSIX threads for more sophisticated asynchronous addons that need to move beyond the standard event loop. Addon authors should diff --git a/doc/api/fs.md b/doc/api/fs.md index fbec52cbf1ef47..f8de227a9ad848 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -1139,7 +1139,7 @@ changes: * `prefix` {string} * `options` {string|Object} * `encoding` {string} **Default:** `'utf8'` -* Returns: {Promise} Fulfills with a string containing the filesystem path +* Returns: {Promise} Fulfills with a string containing the file system path of the newly created temporary directory. 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. This feature depends on the underlying operating system providing a way -to be notified of filesystem changes. +to be notified of file system changes. * On Linux systems, this uses [`inotify(7)`][]. * On BSD systems, this uses [`kqueue(2)`][]. @@ -6898,7 +6898,7 @@ The times in the stat object have the following semantics: link(2), mknod(2), rename(2), unlink(2), utimes(2), read(2), and write(2) system calls. * `birthtime` "Birth Time": Time of file creation. Set once when the - file is created. On filesystems where birthtime is not available, + file is created. On file systems where birthtime is not available, this field may instead hold either the `ctime` or `1970-01-01T00:00Z` (ie, Unix epoch timestamp `0`). This value may be greater than `atime` or `mtime` in this case. On Darwin and other FreeBSD variants, diff --git a/doc/api/modules.md b/doc/api/modules.md index eb54d7921f29a3..02fae47d88ea69 100644 --- a/doc/api/modules.md +++ b/doc/api/modules.md @@ -191,7 +191,7 @@ require(X) from module at path Y a. return the core module b. STOP 2. If X begins with '/' - a. set Y to be the filesystem root + a. set Y to be the file system root 3. If X begins with './' or '/' or '../' a. LOAD_AS_FILE(Y + X) b. LOAD_AS_DIRECTORY(Y + X) diff --git a/doc/api/net.md b/doc/api/net.md index 18837f5a0d5bdf..1e9288d9c734a3 100644 --- a/doc/api/net.md +++ b/doc/api/net.md @@ -29,7 +29,7 @@ sockets on other operating systems. [`socket.connect()`][] take a `path` parameter to identify IPC endpoints. On Unix, the local domain is also known as the Unix domain. The path is a -filesystem pathname. It gets truncated to an OS-dependent length of +file system pathname. It gets truncated to an OS-dependent length of `sizeof(sockaddr_un.sun_path) - 1`. Typical values are 107 bytes on Linux and 103 bytes on macOS. If a Node.js API abstraction creates the Unix domain socket, it will unlink the Unix domain socket as well. For example, @@ -37,7 +37,7 @@ it will unlink the Unix domain socket as well. For example, [`server.close()`][] will unlink it. But if a user creates the Unix domain socket outside of these abstractions, the user will need to remove it. The same applies when a Node.js API creates a Unix domain socket but the program then -crashes. In short, a Unix domain socket will be visible in the filesystem and +crashes. In short, a Unix domain socket will be visible in the file system and will persist until unlinked. On Windows, the local domain is implemented using a named pipe. The path _must_ diff --git a/doc/api/report.md b/doc/api/report.md index fc005d6e0e8dda..213f7126960027 100644 --- a/doc/api/report.md +++ b/doc/api/report.md @@ -567,9 +567,9 @@ In cases where standard streams are used, the value in `directory` is ignored. URLs are not supported. Defaults to a composite filename that contains timestamp, PID, and sequence number. -`directory` specifies the filesystem directory where the report will be written. -URLs are not supported. Defaults to the current working directory of the -Node.js process. +`directory` specifies the file system directory where the report will be +written. URLs are not supported. Defaults to the current working directory of +the Node.js process. ```js // Trigger report only on uncaught exceptions.