[Python-checkins] r73596 - python/trunk/Doc/library/timeit.rst

ezio.melotti python-checkins at python.org
Sun Jun 28 02:07:45 CEST 2009


Author: ezio.melotti
Date: Sun Jun 28 02:07:45 2009
New Revision: 73596

Log:
Fixed a wrong apostrophe

Modified:
   python/trunk/Doc/library/timeit.rst

Modified: python/trunk/Doc/library/timeit.rst
==============================================================================
--- python/trunk/Doc/library/timeit.rst	(original)
+++ python/trunk/Doc/library/timeit.rst	Sun Jun 28 02:07:45 2009
@@ -28,7 +28,7 @@
    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`


More information about the Python-checkins mailing list