summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-10-05 17:42:52 (GMT)
committerGitHub <noreply@github.com>2023-10-05 17:42:52 (GMT)
commit5b66fe8304feaf39754e83c21cdfea110e688434 (patch)
tree54e10df284fbcf830cf899442b7df7ff7b3df7c1
parent5635913125faec07deb31cc8b35d515cc5a80efa (diff)
downloadcpython-5b66fe8304feaf39754e83c21cdfea110e688434.zip
cpython-5b66fe8304feaf39754e83c21cdfea110e688434.tar.gz
cpython-5b66fe8304feaf39754e83c21cdfea110e688434.tar.bz2
[3.12] gh-110383 TimeIt Docs Spelling Fix (GH-110407) (#110409)
gh-110383 TimeIt Docs Spelling Fix (GH-110407) Make 0.2 second plural (cherry picked from commit a973bf0f97e55ace9eab100f9eb95d7eedcb28ac) Co-authored-by: Towster15 <105541074+Towster15@users.noreply.github.com>
-rw-r--r--Doc/library/timeit.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/timeit.rst b/Doc/library/timeit.rst
index 60ec135..616f836 100644
--- a/Doc/library/timeit.rst
+++ b/Doc/library/timeit.rst
@@ -151,7 +151,7 @@ The module defines three convenience functions and a public class:
so that the total time >= 0.2 second, returning the eventual
(number of loops, time taken for that number of loops). It calls
:meth:`.timeit` with increasing numbers from the sequence 1, 2, 5,
- 10, 20, 50, ... until the time taken is at least 0.2 second.
+ 10, 20, 50, ... until the time taken is at least 0.2 seconds.
If *callback* is given and is not ``None``, it will be called after
each trial with two arguments: ``callback(number, time_taken)``.