summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2009-06-28 00:07:45 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2009-06-28 00:07:45 (GMT)
commitb4ad395d0783eb91d997d5940a8536e3c9a61243 (patch)
treeaf39c8e58860d27dc03b83080fb337a4fbcbe01a
parent1dfd5d9f788ed39d558a88f1a3b883baf9c512ef (diff)
downloadcpython-b4ad395d0783eb91d997d5940a8536e3c9a61243.zip
cpython-b4ad395d0783eb91d997d5940a8536e3c9a61243.tar.gz
cpython-b4ad395d0783eb91d997d5940a8536e3c9a61243.tar.bz2
Fixed a wrong apostrophe
-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 fde1078..4f930b3 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`