Skip to content

Commit

Permalink
doc: minor improvement in OS docs
Browse files Browse the repository at this point in the history
Add links to `process.arch` and `process.platform`.

PR-URL: #5006
Reviewed-By: Roman Klauke <romaaan.git@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
  • Loading branch information
estliberitas authored and silverwind committed Feb 4, 2016
1 parent ce11a37 commit 39d0797
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions doc/api/os.markdown
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

0 comments on commit 39d0797

Please sign in to comment.