]> granicus.if.org Git - python/commitdiff
SF 810242. Fix doubled word errors.
authorRaymond Hettinger <python@rcn.com>
Mon, 22 Sep 2003 15:27:11 +0000 (15:27 +0000)
committerRaymond Hettinger <python@rcn.com>
Mon, 22 Sep 2003 15:27:11 +0000 (15:27 +0000)
Doc/api/utilities.tex
Doc/mac/libaetypes.tex
Doc/mac/libframework.tex
Doc/ref/ref3.tex

index a17f70505290037b55d19a502714f6d53b47223c..318e450d8a31e4c86112dd5de1e0750cc01ae9c0 100644 (file)
@@ -147,7 +147,7 @@ values from C values.
   Return the module object corresponding to a module name.  The
   \var{name} argument may be of the form \code{package.module}).
   First check the modules dictionary if there's one there, and if not,
-  create a new one and insert in in the modules dictionary.
+  create a new one and insert it in the modules dictionary.
   Return \NULL{} with an exception set on failure.
   \note{This function does not load or import the module; if the
   module wasn't already loaded, you will get an empty module object.
index 1b6046d19ef838aae329aea4cefa584fcb72c592..362bc2cbce9bf2b6d23ffd74857685651d991d5e 100644 (file)
@@ -11,7 +11,7 @@
 The \module{aetypes} defines classes used to represent Apple Event data
 descriptors and Apple Event object specifiers.
 
-Apple Event data is is contained in descriptors, and these descriptors
+Apple Event data is contained in descriptors, and these descriptors
 are typed. For many descriptors the Python representation is simply the
 corresponding Python type: \code{typeText} in OSA is a Python string,
 \code{typeFloat} is a float, etc. For OSA types that have no direct
index c4d0ef90d492586ae939cf24eb3168b51f2e9bc0..289bd80533f1b74ff88f94de6d87b54cef5805a3 100644 (file)
@@ -56,7 +56,7 @@ at the end).
 
 \begin{funcdesc}{MenuItem}{menu, title\optional{, shortcut, callback}}
 Create a menu item object. The arguments are the menu to create, the
-item item title string and optionally the keyboard shortcut
+item title string and optionally the keyboard shortcut
 and a callback routine. The callback is called with the arguments
 menu-id, item number within menu (1-based), current front window and
 the event record.
index 2ab1a0165b733fefa16098ad98faf013b442a6ba..e235963ec60a465f861c6e00b8c1e85035b06ae9 100644 (file)
@@ -1656,7 +1656,7 @@ the key-item pairs.
 The following optional methods can be defined to further emulate sequence
 objects.  Immutable sequences methods should at most only define
 \method{__getslice__()}; mutable sequences might define all three
-three methods.
+methods.
 
 \begin{methoddesc}[sequence object]{__getslice__}{self, i, j}
 \deprecated{2.0}{Support slice objects as parameters to the