From 953e733e6d0bc02fde0e4f808259218a95a3b902 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Heissler?= Date: Tue, 28 Sep 2021 12:25:15 +0200 Subject: Fix typo in whatsnew: "ns" is 10^-9 secs and "us" is 10^-6 secs. (GH-28565) --- Doc/whatsnew/3.11.rst | 4 ++-- 1 file 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`.) -- cgit v0.12