Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7bdc484

Browse files
committed
Patch #808362: Fix typos.
1 parent 8f81c93 commit 7bdc484

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Doc/lib/libtimeit.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ \subsection{Command Line Interface}
122122
\function{time.time()}'s granularity is 1/60th of a second; on \UNIX,
123123
\function{time.clock()} has 1/100th of a second granularity and
124124
\function{time.time()} is much more precise. On either platform, the
125-
default timer functions measures wall clock time, not the CPU time.
125+
default timer functions measure wall clock time, not the CPU time.
126126
This means that other processes running on the same computer may
127127
interfere with the timing. The best thing to do when accurate timing
128128
is necessary is to repeat the timing a few times and use the best

Doc/lib/libunittest.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -769,7 +769,7 @@ \subsection{TestResult Objects
769769

770770

771771
The following methods of the \class{TestResult} class are used to
772-
maintain the internal data structures, and mmay be extended in
772+
maintain the internal data structures, and may be extended in
773773
subclasses to support additional reporting requirements. This is
774774
particularly useful in building tools which support interactive
775775
reporting while tests are being run.

Lib/timeit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
clock() has microsecond granularity but time()'s granularity is 1/60th
3434
of a second; on Unix, clock() has 1/100th of a second granularity and
3535
time() is much more precise. On either platform, the default timer
36-
functions measures wall clock time, not the CPU time. This means that
36+
functions measure wall clock time, not the CPU time. This means that
3737
other processes running on the same computer may interfere with the
3838
timing. The best thing to do when accurate timing is necessary is to
3939
repeat the timing a few times and use the best time. The -r option is

0 commit comments

Comments
 (0)