summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorShiv Dhar <shivdhar@gmail.com>2019-02-28 04:51:15 +0530
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-02-27 15:21:15 -0800
commit4064089fce57c6fb2d1df9f3fb51d3fd5557696b (patch)
tree08c754f07609c8d917e64bb7ca339400f8b2bcb0 /Doc
parentccb92e814d289b89bccf9ad1b7d2ec6ecdebbfcb (diff)
downloadcpython-git-4064089fce57c6fb2d1df9f3fb51d3fd5557696b.tar.gz
Fix grammar error in timeit module docs (GH-12066)
skip issue skip news
Diffstat (limited to 'Doc')
-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 197b8a76fc..8ca37034f7 100644
--- a/Doc/library/timeit.rst
+++ b/Doc/library/timeit.rst
@@ -129,7 +129,7 @@ The module defines three convenience functions and a public class:
By default, :meth:`.timeit` temporarily turns off :term:`garbage
collection` during the timing. The advantage of this approach is that
- it makes independent timings more comparable. This disadvantage is
+ it makes independent timings more comparable. The disadvantage is
that GC may be an important component of the performance of the
function being measured. If so, GC can be re-enabled as the first
statement in the *setup* string. For example::