summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJörn Heissler <joernheissler@users.noreply.github.com>2021-09-28 10:25:15 (GMT)
committerGitHub <noreply@github.com>2021-09-28 10:25:15 (GMT)
commit953e733e6d0bc02fde0e4f808259218a95a3b902 (patch)
treef3357d097f80fcedc6255894f1cee1a57e6159b6
parent95d31370829b7d729667588e0a9943217401ea5b (diff)
downloadcpython-953e733e6d0bc02fde0e4f808259218a95a3b902.zip
cpython-953e733e6d0bc02fde0e4f808259218a95a3b902.tar.gz
cpython-953e733e6d0bc02fde0e4f808259218a95a3b902.tar.bz2
Fix typo in whatsnew: "ns" is 10^-9 secs and "us" is 10^-6 secs. (GH-28565)
-rw-r--r--Doc/whatsnew/3.11.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst
index 818208e..7121bbe 100644
--- a/Doc/whatsnew/3.11.rst
+++ b/Doc/whatsnew/3.11.rst
@@ -243,8 +243,8 @@ time
----
* On Unix, :func:`time.sleep` now uses the ``clock_nanosleep()`` or
- ``nanosleep()`` function, if available, which has a resolution of 1 ns (10^-6
- sec), rather than using ``select()`` which has a resolution of 1 us (10^-9
+ ``nanosleep()`` function, if available, which has a resolution of 1 ns (10^-9
+ sec), rather than using ``select()`` which has a resolution of 1 us (10^-6
sec).
(Contributed by Livius and Victor Stinner in :issue:`21302`.)