From e5b99c85497a51fc687de33593e81c442767ee20 Mon Sep 17 00:00:00 2001 From: Shiv Dhar Date: Wed, 27 Feb 2019 13:18:13 +0530 Subject: [PATCH] Fix grammar error --- Doc/library/timeit.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/timeit.rst b/Doc/library/timeit.rst index 197b8a76fc389b..8ca37034f79b7c 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::