From: Ezio Melotti Date: Sun, 28 Jun 2009 00:07:45 +0000 (+0000) Subject: Fixed a wrong apostrophe X-Git-Tag: v2.7a1~896 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b4ad395d0783eb91d997d5940a8536e3c9a61243;p=python Fixed a wrong apostrophe --- diff --git a/Doc/library/timeit.rst b/Doc/library/timeit.rst index fde10781b3..4f930b354f 100644 --- a/Doc/library/timeit.rst +++ b/Doc/library/timeit.rst @@ -28,7 +28,7 @@ The module defines the following public class: setup, and a timer function. Both statements default to ``'pass'``; the timer function is platform-dependent (see the module doc string). *stmt* and *setup* may also contain multiple statements separated by ``;`` or newlines, as long as - they don’t contain multi-line string literals. + they don't contain multi-line string literals. To measure the execution time of the first statement, use the :meth:`timeit` method. The :meth:`repeat` method is a convenience to call :meth:`timeit`