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

Skip to content

Commit 999b57c

Browse files
committed
Fix double word typos.
1 parent 9ac25ec commit 999b57c

10 files changed

Lines changed: 10 additions & 10 deletions

Doc/lib/libcookie.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ \section{\module{Cookie} ---
1212
string-only cookies, and provides an abstraction for having any serializable
1313
data-type as cookie value.
1414

15-
The module formerly strictly applied the parsing rules described in in
15+
The module formerly strictly applied the parsing rules described in
1616
the \rfc{2109} and \rfc{2068} specifications. It has since been discovered
1717
that MSIE 3.0x doesn't follow the character rules outlined in those
1818
specs. As a result, the parsing rules used are a bit less strict.

Doc/lib/libfuncs.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ \section{Built-in Functions \label{built-in-funcs}}
422422
file's desired buffer size: 0 means unbuffered, 1 means line
423423
buffered, any other positive value means use a buffer of
424424
(approximately) that size. A negative \var{bufsize} means to use
425-
the system default, which is usually line buffered for for tty
425+
the system default, which is usually line buffered for tty
426426
devices and fully buffered for other files. If omitted, the system
427427
default is used.\footnote{
428428
Specifying a buffer size currently has no effect on systems that

Doc/lib/liblocale.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ \section{\module{locale} ---
5858
\end{funcdesc}
5959

6060
\begin{funcdesc}{localeconv}{}
61-
Returns the database of of the local conventions as a dictionary.
61+
Returns the database of the local conventions as a dictionary.
6262
This dictionary has the following strings as keys:
6363

6464
\begin{tableiii}{l|l|p{3in}}{constant}{Key}{Category}{Meaning}

Doc/lib/libmailbox.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ \section{\module{mailbox} ---
7272
Access a Babyl mailbox, which is similar to an MMDF mailbox. In
7373
Babyl format, each message has two sets of headers, the
7474
\emph{original} headers and the \emph{visible} headers. The original
75-
headers appear before a a line containing only \code{'*** EOOH ***'}
75+
headers appear before a line containing only \code{'*** EOOH ***'}
7676
(End-Of-Original-Headers) and the visible headers appear after the
7777
\code{EOOH} line. Babyl-compliant mail readers will show you only the
7878
visible headers, and \class{BabylMailbox} objects will return messages

Doc/lib/libmultifile.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ \section{\module{multifile} ---
1717
\begin{classdesc}{MultiFile}{fp\optional{, seekable}}
1818
Create a multi-file. You must instantiate this class with an input
1919
object argument for the \class{MultiFile} instance to get lines from,
20-
such as as a file object returned by \function{open()}.
20+
such as a file object returned by \function{open()}.
2121

2222
\class{MultiFile} only ever looks at the input object's
2323
\method{readline()}, \method{seek()} and \method{tell()} methods, and

Doc/lib/libpdb.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ \chapter{The Python Debugger \label{debugger}}
7777
\end{funcdesc}
7878

7979
\begin{funcdesc}{runeval}{expression\optional{, globals\optional{, locals}}}
80-
Evaluate the \var{expression} (given as a a string) under debugger
80+
Evaluate the \var{expression} (given as a string) under debugger
8181
control. When \function{runeval()} returns, it returns the value of the
8282
expression. Otherwise this function is similar to
8383
\function{run()}.

Doc/lib/libprofile.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ \section{Limitations \label{profile-limits}}
533533
There is a fundamental problem with deterministic profilers involving
534534
accuracy. The most obvious restriction is that the underlying ``clock''
535535
is only ticking at a rate (typically) of about .001 seconds. Hence no
536-
measurements will be more accurate that that underlying clock. If
536+
measurements will be more accurate than the underlying clock. If
537537
enough measurements are taken, then the ``error'' will tend to average
538538
out. Unfortunately, removing this first error induces a second source
539539
of error...

Doc/lib/librfc822.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ \section{\module{rfc822} ---
4646
data before discovering that the \cfunction{lseek()} system call
4747
doesn't work. For maximum portability, you should set the seekable
4848
argument to zero to prevent that initial \method{tell()} when passing
49-
in an unseekable object such as a a file object created from a socket
49+
in an unseekable object such as a file object created from a socket
5050
object.
5151

5252
Input lines as read from the file may either be terminated by CR-LF or

Doc/lib/libuserdict.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ \section{\module{UserDict} ---
2929
\member{data} attribute of \class{UserDict} instances. If
3030
\var{initialdata} is provided, \member{data} is initialized with its
3131
contents; note that a reference to \var{initialdata} will not be kept,
32-
allowing it be used used for other purposes.
32+
allowing it be used for other purposes.
3333
\end{classdesc}
3434

3535
In addition to supporting the methods and operations of mappings (see

Doc/lib/libzipfile.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ \subsection{ZipInfo Objects \label{zipinfo-objects}}
210210
\end{memberdesc}
211211

212212
\begin{memberdesc}[ZipInfo]{date_time}
213-
The time and date of the last modification to to the archive
213+
The time and date of the last modification to the archive
214214
member. This is a tuple of six values:
215215

216216
\begin{tableii}{c|l}{code}{Index}{Value}

0 commit comments

Comments
 (0)