summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarter Snook <cartersnook04@gmail.com>2022-11-17 10:02:43 -0600
committerGitHub <noreply@github.com>2022-11-17 16:02:43 +0000
commit490c3d69898f53a5317f4dff35fa9e19d357763e (patch)
treee3c1cf506370c458ba012ea3b009f94c300517e0
parent405ea2a10d2e86b9924162234a16696883d8c55a (diff)
downloadnode-new-490c3d69898f53a5317f4dff35fa9e19d357763e.tar.gz
doc: add arm64 to os.machine()
PR-URL: https://github.com/nodejs/node/pull/45374 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
-rw-r--r--doc/api/os.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/os.md b/doc/api/os.md
index 5dc8f22ce1..245371e9cf 100644
--- a/doc/api/os.md
+++ b/doc/api/os.md
@@ -462,8 +462,8 @@ added:
* Returns {string}
-Returns the machine type as a string, such as `arm`, `aarch64`, `mips`,
-`mips64`, `ppc64`, `ppc64le`, `s390`, `s390x`, `i386`, `i686`, `x86_64`.
+Returns the machine type as a string, such as `arm`, `arm64`, `aarch64`,
+`mips`, `mips64`, `ppc64`, `ppc64le`, `s390`, `s390x`, `i386`, `i686`, `x86_64`.
On POSIX systems, the machine type is determined by calling
[`uname(3)`][]. On Windows, `RtlGetVersion()` is used, and if it is not