Skip to content

Commit 17f690f

Browse files
committed
Minor changes to match the style guide.
1 parent 6e5e1d9 commit 17f690f

7 files changed

Lines changed: 17 additions & 17 deletions

File tree

Doc/dist/dist.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
\title{Distributing Python Modules}
77

88
\author{Greg Ward}
9-
\authoraddress{E-mail: \email{gward@python.net}}
9+
\authoraddress{Email: \email{gward@python.net}}
1010

1111
\makeindex
1212

@@ -1237,8 +1237,8 @@ \subsection{Creating Windows installers}
12371237
\label{creating-wininst}
12381238

12391239
Executable Windows installers are the natural format for binary
1240-
distributions on Windows. They display a nice GUI interface, display
1241-
some information of the module distribution to be installed, taken
1240+
distributions on Windows. They display a nice graphical user interface,
1241+
display some information of the module distribution to be installed, taken
12421242
from the meta-dada in the setup script, let the user select a few
12431243
(currently maybe too few) options, and start or cancel the installation.
12441244

Doc/inst/inst.tex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
% and Feeding of a Python Installation" talk in here somewhere. Yow!
2121

2222
\author{Greg Ward}
23-
\authoraddress{E-mail: \email{gward@python.net}}
23+
\authoraddress{Email: \email{gward@python.net}}
2424

2525
\makeindex
2626

@@ -198,10 +198,10 @@ \subsection{Platform variations}
198198
On Windows, you'd probably download \file{foo-1.0.zip}. If you
199199
downloaded the archive file to \file{C:\textbackslash{}Temp}, then it
200200
would unpack into \file{C:\textbackslash{}Temp\textbackslash{}foo-1.0};
201-
you can use either a GUI archive manipulator (such as WinZip) or a
202-
command-line tool (such as \program{unzip} or \program{pkunzip}) to
203-
unpack the archive. Then, open a command prompt window (``DOS box''),
204-
and run:
201+
you can use either a archive manipulator with a grapical user interface
202+
(such as WinZip) or a command-line tool (such as \program{unzip} or
203+
\program{pkunzip}) to unpack the archive. Then, open a command prompt
204+
window (``DOS box''), and run:
205205

206206
\begin{verbatim}
207207
cd c:\Temp\foo-1.0
@@ -442,7 +442,7 @@ \subsubsection{Borland C++}
442442

443443
First you have to know that the Borland's object file format(OMF) is
444444
different from what is used by the Python version you can download
445-
from the Python web site. (Python is built with Microsoft Visual \Cpp,
445+
from the Python Web site. (Python is built with Microsoft Visual \Cpp,
446446
which uses COFF as object file format.) For this reason you have to
447447
convert Python's library \file{python20.lib} into the Borland format.
448448
You can do this as follows:

Doc/mac/libmacic.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ \section{\module{ic} ---
3434
The \module{ic} module defines the following class and function:
3535

3636
\begin{classdesc}{IC}{\optional{signature\optional{, ic}}}
37-
Create an internet config object. The signature is a 4-character creator
37+
Create an Internet Config object. The signature is a 4-character creator
3838
code of the current application (default \code{'Pyth'}) which may
3939
influence some of ICs settings. The optional \var{ic} argument is a
4040
low-level \code{icglue.icinstance} created beforehand, this may be

Doc/mac/libmacos.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ \section{\module{MacOS} ---
5151
All parameters are optional, and default to the current value. The return
5252
value of this function is a tuple with the old values of these options.
5353
Initial defaults are that all processing is enabled, checking is done every
54-
quarter second and the CPU is given up for a quarter second when in the
54+
quarter second and the processor is given up for a quarter second when in the
5555
background.
5656
\end{funcdesc}
5757

Doc/templates/howto.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
% The author and/or editor can define 'significant' however they like.
2020
\release{0.00}
2121

22-
% At minimum, give your name and an e-mail address. You can include a
22+
% At minimum, give your name and an email address. You can include a
2323
% snail-mail address if you like.
2424
\author{Me, 'cause I wrote it}
2525
\authoraddress{Me, 'cause I'm self-employed.}

Doc/templates/manual.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
\authoraddress{
1717
Organization name, if applicable \\
1818
Street address, if you want to use it \\
19-
E-mail: \email{your-email@your.domain}
19+
Email: \email{your-email@your.domain}
2020
}
2121

2222
\date{April 30, 1999} % update before release!

Doc/tut/tut.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ \chapter*{Front Matter\label{front}}
3333

3434
The Python interpreter and the extensive standard library are freely
3535
available in source or binary form for all major platforms from the
36-
Python web site, \url{http://www.python.org}, and can be freely
36+
Python Web site, \url{http://www.python.org/}, and can be freely
3737
distributed. The same site also contains distributions of and
3838
pointers to many free third party Python modules, programs and tools,
3939
and additional documentation.
@@ -105,7 +105,7 @@ \chapter{Whetting Your Appetite \label{intro}}
105105
standard modules that you can use as the basis of your programs --- or
106106
as examples to start learning to program in Python. There are also
107107
built-in modules that provide things like file I/O, system calls,
108-
sockets, and even interfaces to GUI toolkits like Tk.
108+
sockets, and even interfaces to graphical user interface toolkits like Tk.
109109

110110
Python is an interpreted language, which can save you considerable time
111111
during program development because no compilation and linking is
@@ -745,7 +745,7 @@ \subsection{Unicode Strings \label{unicodeStrings}}
745745

746746
Starting with Python 2.0 a new data type for storing text data is
747747
available to the programmer: the Unicode object. It can be used to
748-
store and manipulate Unicode data (see \url{http://www.unicode.org})
748+
store and manipulate Unicode data (see \url{http://www.unicode.org/})
749749
and integrates well with the existing string objects providing
750750
auto-conversions where necessary.
751751

@@ -3936,7 +3936,7 @@ \chapter{What Now? \label{whatNow}}
39363936
39373937
The major Python Web site is \url{http://www.python.org/}; it contains
39383938
code, documentation, and pointers to Python-related pages around the
3939-
Web. This web site is mirrored in various places around the
3939+
Web. This Web site is mirrored in various places around the
39403940
world, such as Europe, Japan, and Australia; a mirror may be faster
39413941
than the main site, depending on your geographical location. A more
39423942
informal site is \url{http://starship.python.net/}, which contains a

0 commit comments

Comments
 (0)