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

Skip to content

Commit 92016dc

Browse files
committed
SF 810242. Fix doubled word errors.
1 parent 0e5a51d commit 92016dc

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

Doc/api/utilities.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ \section{Importing Modules \label{importing}}
147147
Return the module object corresponding to a module name. The
148148
\var{name} argument may be of the form \code{package.module}).
149149
First check the modules dictionary if there's one there, and if not,
150-
create a new one and insert in in the modules dictionary.
150+
create a new one and insert it in the modules dictionary.
151151
Return \NULL{} with an exception set on failure.
152152
\note{This function does not load or import the module; if the
153153
module wasn't already loaded, you will get an empty module object.

Doc/mac/libaetypes.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ \section{\module{aetypes} ---
1111
The \module{aetypes} defines classes used to represent Apple Event data
1212
descriptors and Apple Event object specifiers.
1313

14-
Apple Event data is is contained in descriptors, and these descriptors
14+
Apple Event data is contained in descriptors, and these descriptors
1515
are typed. For many descriptors the Python representation is simply the
1616
corresponding Python type: \code{typeText} in OSA is a Python string,
1717
\code{typeFloat} is a float, etc. For OSA types that have no direct

Doc/mac/libframework.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ \section{\module{FrameWork} ---
5656

5757
\begin{funcdesc}{MenuItem}{menu, title\optional{, shortcut, callback}}
5858
Create a menu item object. The arguments are the menu to create, the
59-
item item title string and optionally the keyboard shortcut
59+
item title string and optionally the keyboard shortcut
6060
and a callback routine. The callback is called with the arguments
6161
menu-id, item number within menu (1-based), current front window and
6262
the event record.

Doc/ref/ref3.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1656,7 +1656,7 @@ \subsection{Additional methods for emulation of sequence types
16561656
The following optional methods can be defined to further emulate sequence
16571657
objects. Immutable sequences methods should at most only define
16581658
\method{__getslice__()}; mutable sequences might define all three
1659-
three methods.
1659+
methods.
16601660

16611661
\begin{methoddesc}[sequence object]{__getslice__}{self, i, j}
16621662
\deprecated{2.0}{Support slice objects as parameters to the

0 commit comments

Comments
 (0)