Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions doc/api/os.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ system.
## os.arch()

Returns the operating system CPU architecture. Possible values are `'x64'`,
`'arm'` and `'ia32'`. Returns the value of `process.arch`.
`'arm'` and `'ia32'`. Returns the value of [`process.arch`][].

## os.cpus()

Expand Down Expand Up @@ -159,7 +159,7 @@ interfaces that have been assigned an address.

Returns the operating system platform. Possible values are `'darwin'`,
`'freebsd'`, `'linux'`, `'sunos'` or `'win32'`. Returns the value of
`process.platform`.
[`process.platform`][].

## os.release()

Expand All @@ -181,3 +181,6 @@ on OS X and `'Windows_NT'` on Windows.
## os.uptime()

Returns the system uptime in seconds.

[`process.arch`]: process.html#process_process_arch
[`process.platform`]: process.html#process_process_platform