summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-02-10 14:57:14 -0800
committerGitHub <noreply@github.com>2020-02-10 14:57:14 -0800
commit4d4301782cbc789eedc5b76741d1028df579cfa5 (patch)
tree733a368b8598b7dbd73f3ad324c3f9dc10a49ace
parente6690f6cd1b0c2bd5804bad30239a4070f79102c (diff)
downloadcpython-git-4d4301782cbc789eedc5b76741d1028df579cfa5.tar.gz
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 (cherry picked from commit 37c55b2b49a3acb7c56c9f6a5062bc6e4e35bc1c) Co-authored-by: Roger Hurwitz <rogerhurwitz@gmail.com>
-rw-r--r--Doc/library/os.rst6
1 files changed, 2 insertions, 4 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index 3a828c5e08..0d8df34c34 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -3898,10 +3898,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.