From 9aaf278cae5e9f72f921730d5e831886c2154156 Mon Sep 17 00:00:00 2001 From: ayj8201 Date: Tue, 3 Feb 2026 21:53:18 +0900 Subject: [PATCH 1/3] doc: fix grammatical error in README.md Corrected wording for clarity in README. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3ac5fba3d77ab2..537b4776ca92a1 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ curl -fsLo "/path/to/nodejs-keyring.kbx" "https://github.com/nodejs/release-keys ``` Alternatively, you can import the releaser keys in your default keyring, see -[Release keys](#release-keys) for commands to how to do that. +[Release keys](#release-keys) for commands on how to do that. Then, you can verify the files you've downloaded locally (if you're using your default keyring, pass `--keyring="${GNUPGHOME:-~/.gnupg}/pubring.kbx"`): From 0b7cb820685b253f75497335c1643c4dd31b431d Mon Sep 17 00:00:00 2001 From: ayj8201 Date: Wed, 4 Feb 2026 17:26:20 +0900 Subject: [PATCH 2/3] doc: clarify fs.copyFile() symlink behavior fixes: #61518 --- doc/api/fs.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/api/fs.md b/doc/api/fs.md index 6ea9fa9fdde0f2..d4ab0b4f01588d 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -2441,6 +2441,9 @@ See the POSIX close(2) documentation for more detail. ### `fs.copyFile(src, dest[, mode], callback)` +Note: `fs.copyFile()` always dereferences symbolic links. +If `src` is a symbolic link, the contents of the target file will be copied rather than the link itself. +