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

Skip to content

Commit 565ea5a

Browse files
committed
SF bug#1038917 fix typos (Contributed by George Yoshida.)
1 parent 880430e commit 565ea5a

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

Doc/lib/libgetopt.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ \section{\module{getopt} ---
3737
\var{options} should be an empty string. Long options on the command
3838
line can be recognized so long as they provide a prefix of the option
3939
name that matches exactly one of the accepted options. For example,
40-
it \var{long_options} is \code{['foo', 'frob']}, the option
40+
if \var{long_options} is \code{['foo', 'frob']}, the option
4141
\longprogramopt{fo} will match as \longprogramopt{foo}, but
4242
\longprogramopt{f} will not match uniquely, so \exception{GetoptError}
4343
will be raised.

Doc/mac/libaetypes.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ \section{\module{aetypes} ---
121121
\end{classdesc}
122122

123123
\begin{classdesc}{NProperty}{fr}
124-
Abstract basclass for an OSA property. The subclass should set the class
124+
Abstract baseclass for an OSA property. The subclass should set the class
125125
attributes \code{want} and \code{which} to designate which property we
126126
are talking about. Instances of subclasses of this class are Object
127127
Specifiers.

Doc/mac/libmacic.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ \subsection{IC Objects}
7474

7575

7676
\begin{methoddesc}{launchurl}{url\optional{, hint}}
77-
Parse the given URL, lauch the correct application and pass it the
77+
Parse the given URL, launch the correct application and pass it the
7878
URL. The optional \var{hint} can be a scheme name such as
7979
\code{'mailto:'}, in which case incomplete URLs are completed with this
8080
scheme. If \var{hint} is not provided, incomplete URLs are invalid.

Doc/mac/using.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ \subsection{Writing a Python Script \label{IDEwrite}}
384384
You can create a new script, open a previously saved script, and save
385385
your currently open script by selecting the appropriate item in the
386386
``File'' menu. Dropping a Python script onto the
387-
\program{Python IDE} will open it for editting.
387+
\program{Python IDE} will open it for editing.
388388
389389
If you try to open a script with the \program{Python IDE} but either
390390
can't locate it from the ``Open'' dialog box, or you get an error

Misc/HISTORY

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7255,7 +7255,7 @@ Ellipses object, and corresponding syntax:
72557255
x[lo:hi:stride] == x[slice(lo, hi, stride)]
72567256
x[a, ..., z] == x[(a, Ellipses, z)]
72577257

7258-
- New documentation for errno and cgi mdoules.
7258+
- New documentation for errno and cgi modules.
72597259

72607260
- The directory containing the script passed to the interpreter is
72617261
inserted in from of sys.path; "." is no longer a default path

0 commit comments

Comments
 (0)