aboutsummaryrefslogtreecommitdiff
path: root/doc/mod3.tex
diff options
context:
space:
mode:
Diffstat (limited to 'doc/mod3.tex')
-rw-r--r--doc/mod3.tex10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/mod3.tex b/doc/mod3.tex
index d1a99b1..d37956c 100644
--- a/doc/mod3.tex
+++ b/doc/mod3.tex
@@ -19,7 +19,7 @@ The string
The string
{\tt '0123456789abcdefABCDEF'}.
\funcitem{letters}
-The concatenation of the strings
+The concatenation of the strings
{\tt lowercase}
and
{\tt uppercase}
@@ -99,7 +99,7 @@ Removes leading and trailing whitespace from the string
Converts lower case letters to upper case and vice versa.
\funcitem{upper}{s}
Convert letters to upper case.
-\funcitem{ljust(s, width), rjust(s, width), center}{s, width}
+\funcitem{ljust(s, width), rjust(s, width), center}{s, width}
%.br
These functions respectively left-justify, right-justify and center a
string in a field of given width.
@@ -252,7 +252,7 @@ Example:
[('-a', ''), ('-b', ''), ('-c', 'foo'), ('-d', 'bar')]
>>> args
['a1', 'a2']
->>>
+>>>
\end{verbatim}\ecode
The exception
{\tt getopt.error = 'getopt error'}
@@ -305,7 +305,7 @@ Read the file for details.
Suggested usage is
\bcode\begin{verbatim}
>>> from stdwinevents import *
->>>
+>>>
\end{verbatim}\ecode
\subsection{Standard Module {\tt rect}}
@@ -342,7 +342,7 @@ This makes it possible to quickly check whether a result is empty:
>>> r3 = rect.intersect(r1, r2)
>>> if r3 is rect.empty: print 'Empty intersection'
Empty intersection
->>>
+>>>
\end{verbatim}\ecode
\funcitem{is\_empty}{r}
%.br