From b11e05120e33ba41caf08e04a393c52c839eeb39 Mon Sep 17 00:00:00 2001 From: Carter Snook Date: Tue, 8 Nov 2022 09:31:17 -0600 Subject: [PATCH] doc: add arm64 to os.machine() --- doc/api/os.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/os.md b/doc/api/os.md index 13feec731e80cc..732a8f72c6b607 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