Closed
Description
Affected URL(s)
https://nodejs.org/dist/latest-v20.x/docs/api/os.html#osarch
Description of the problem
The node.git/doc/api/os.md
file currently reads:
Returns the operating system CPU architecture for which the Node.js binary was
compiled. Possible values are `'arm'`, `'arm64'`, `'ia32'`, `'mips'`,
`'mipsel'`, `'ppc'`, `'ppc64'`, `'s390'`, `'s390x'`, and `'x64'`.
I suggest to change it to:
Returns the operating system CPU architecture for which the Node.js binary was
compiled. Possible values are `'arm'`, `'arm64'`, `'ia32'`, `'mips'`,
`'mipsel'`, `'ppc'`, `'ppc64'`, `'riscv64'`, `'s390'`, `'s390x'`, and `'x64'`.
The same for node.git/doc/api/process.md
.