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

Skip to content

Commit 7e43110

Browse files
committed
SF 810242. Fix doubled word errors.
1 parent e46d14c commit 7e43110

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

Doc/lib/libcodecs.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ \section{\module{codecs} ---
161161
well.}
162162

163163
\var{encoding} specifies the encoding which is to be used for the
164-
the file.
164+
file.
165165

166166
\var{errors} may be given to define the error handling. It defaults
167167
to \code{'strict'} which causes a \exception{ValueError} to be raised

Doc/lib/libfuncs.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -975,7 +975,7 @@ \section{Built-in Functions \label{built-in-funcs}}
975975
container that supports iteration, or an iterator object.
976976
If \var{sequence} is already a tuple, it
977977
is returned unchanged. For instance, \code{tuple('abc')} returns
978-
returns \code{('a', 'b', 'c')} and \code{tuple([1, 2, 3])} returns
978+
\code{('a', 'b', 'c')} and \code{tuple([1, 2, 3])} returns
979979
\code{(1, 2, 3)}. If no argument is given, returns a new empty
980980
tuple, \code{()}.
981981
\end{funcdesc}

Doc/lib/libgopherlib.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ \section{\module{gopherlib} ---
77
\indexii{Gopher}{protocol}
88

99
This module provides a minimal implementation of client side of the
10-
the Gopher protocol. It is used by the module \refmodule{urllib} to
10+
Gopher protocol. It is used by the module \refmodule{urllib} to
1111
handle URLs that use the Gopher protocol.
1212

1313
The module defines the following functions:

Doc/lib/libimgfile.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ \section{\module{imgfile} ---
99
The \module{imgfile} module allows Python programs to access SGI imglib image
1010
files (also known as \file{.rgb} files). The module is far from
1111
complete, but is provided anyway since the functionality that there is
12-
is enough in some cases. Currently, colormap files are not supported.
12+
enough in some cases. Currently, colormap files are not supported.
1313

1414
The module defines the following variables and functions:
1515

Doc/lib/libitertools.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ \section{\module{itertools} ---
4141

4242
The performance advantage of iterators becomes more acute as the number
4343
of elements increases -- at some point, lists grow large enough to
44-
to severely impact memory cache performance and start running slowly.
44+
severely impact memory cache performance and start running slowly.
4545

4646
\begin{seealso}
4747
\seetext{The Standard ML Basis Library,

Doc/lib/libmultifile.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ \subsection{MultiFile Objects \label{MultiFile-objects}}
121121
Turn a boundary string into an end-marker line. By default, this
122122
method prepends \code{'-}\code{-'} and appends \code{'-}\code{-'} (like a
123123
MIME-multipart end-of-message marker) but it is declared so it can be
124-
be overridden in derived classes. This method need not append LF or
124+
overridden in derived classes. This method need not append LF or
125125
CR-LF, as comparison with the result ignores trailing whitespace.
126126
\end{methoddesc}
127127

Doc/lib/libregex.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ \subsection{Module Contents}
315315
result is a tuple with one item per argument. If the \var{index} is
316316
zero, the corresponding return value is the entire matching string; if
317317
it is in the inclusive range [1..99], it is the string matching the
318-
the corresponding parenthesized group (using the default syntax,
318+
corresponding parenthesized group (using the default syntax,
319319
groups are parenthesized using \code{{\e}(} and \code{{\e})}). If no
320320
such group exists, the corresponding result is \code{None}.
321321

0 commit comments

Comments
 (0)