@@ -331,7 +331,7 @@ The `os.release()` method returns a string identifying the operating system
|
331 | 331 | release. |
332 | 332 | |
333 | 333 | *Note*: On POSIX systems, the operating system release is determined by calling |
334 | | -uname(3). On Windows, `GetVersionExW()` is used. Please see |
| 334 | +[uname(3)][]. On Windows, `GetVersionExW()` is used. Please see |
335 | 335 | https://en.wikipedia.org/wiki/Uname#Examples for more information. |
336 | 336 | |
337 | 337 | ## os.tmpdir() |
@@ -362,11 +362,12 @@ added: v0.3.3
|
362 | 362 | * Returns: {string} |
363 | 363 | |
364 | 364 | The `os.type()` method returns a string identifying the operating system name |
365 | | -as returned by uname(3). For example `'Linux'` on Linux, `'Darwin'` on macOS and |
366 | | -`'Windows_NT'` on Windows. |
| 365 | +as returned by [uname(3)][]. For example `'Linux'` on Linux, `'Darwin'` on macOS |
| 366 | +and `'Windows_NT'` on Windows. |
367 | 367 | |
368 | 368 | Please see https://en.wikipedia.org/wiki/Uname#Examples for additional |
369 | | -information about the output of running uname(3) on various operating systems. |
| 369 | +information about the output of running [uname(3)][] on various operating |
| 370 | +systems. |
370 | 371 | |
371 | 372 | ## os.uptime() |
372 | 373 | <!-- YAML |
@@ -1167,3 +1168,4 @@ The following error codes are specific to the Windows operating system:
|
1167 | 1168 | [`process.arch`]: process.html#process_process_arch |
1168 | 1169 | [`process.platform`]: process.html#process_process_platform |
1169 | 1170 | [OS Constants]: #os_os_constants |
| 1171 | +[uname(3)]: https://linux.die.net/man/3/uname |