]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-39594: Fix typo in os.times documentation (GH-18443)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 10 Feb 2020 22:55:35 +0000 (14:55 -0800)
committerGitHub <noreply@github.com>
Mon, 10 Feb 2020 22:55:35 +0000 (14:55 -0800)
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>
Doc/library/os.rst

index 3a5a5f97b93a630764935d2307eddbaa5a6dc98f..e23500d43391fc49d06b57eb241ee082c00b4d37 100644 (file)
@@ -3603,10 +3603,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.