diff options
author | Roger Hurwitz <rogerhurwitz@gmail.com> | 2020-02-10 22:50:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-10 22:50:19 (GMT) |
commit | 37c55b2b49a3acb7c56c9f6a5062bc6e4e35bc1c (patch) | |
tree | 88b6d6dd77c5413730fd6759d49c5622e14044c9 | |
parent | d68e0a8a165761604e820c8cb4f20abc735e717f (diff) | |
download | cpython-37c55b2b49a3acb7c56c9f6a5062bc6e4e35bc1c.zip cpython-37c55b2b49a3acb7c56c9f6a5062bc6e4e35bc1c.tar.gz cpython-37c55b2b49a3acb7c56c9f6a5062bc6e4e35bc1c.tar.bz2 |
bpo-39594: Fix typo in os.times documentation (GH-18443)
There was an extra space in the url markup, causing the documentation not rendered properly.
https://bugs.python.org/issue39594
-rw-r--r-- | Doc/library/os.rst | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index bfc0322..b06a318 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -3912,10 +3912,8 @@ written in Python, such as a mail server's external command delivery program. See the Unix manual page :manpage:`times(2)` and :manpage:`times(3)` manual page on Unix or `the GetProcessTimes MSDN - <https://docs.microsoft.com/windows/win32/api/processthreadsapi/nf-processthreadsapi-getprocesstimes>` - _ on Windows. - On Windows, only :attr:`user` and :attr:`system` are known; the other - attributes are zero. + <https://docs.microsoft.com/windows/win32/api/processthreadsapi/nf-processthreadsapi-getprocesstimes>`_ + on Windows. On Windows, only :attr:`user` and :attr:`system` are known; the other attributes are zero. .. availability:: Unix, Windows. |