summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libfuncs.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1998-12-07 17:13:18 (GMT)
committerFred Drake <fdrake@acm.org>1998-12-07 17:13:18 (GMT)
commitd83675f344218d28f9a56e24596a5596ccc7dabb (patch)
treecb95b3a40033e5e3673128b3ee33ea202111f358 /Doc/lib/libfuncs.tex
parent9c1201fe39c21ecc238daea82460e0ae85ce11f3 (diff)
downloadcpython-d83675f344218d28f9a56e24596a5596ccc7dabb.zip
cpython-d83675f344218d28f9a56e24596a5596ccc7dabb.tar.gz
cpython-d83675f344218d28f9a56e24596a5596ccc7dabb.tar.bz2
"singed" --> "signed" (3 places)
Noticed by Andrew MacIntyre <andymac@bullseye.apana.org.au>.
Diffstat (limited to 'Doc/lib/libfuncs.tex')
-rw-r--r--Doc/lib/libfuncs.tex6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex
index 466351d..d0b52a7 100644
--- a/Doc/lib/libfuncs.tex
+++ b/Doc/lib/libfuncs.tex
@@ -230,7 +230,7 @@ removed.
\begin{funcdesc}{float}{x}
Convert a string or a number to floating point. If the argument is a
- string, it must contain a possibly singed decimal or floating point
+ string, it must contain a possibly signed decimal or floating point
number, possibly embedded in whitespace;
this behaves identical to \code{string.atof(\var{x})}.
Otherwise, the argument may be a plain or
@@ -305,7 +305,7 @@ module from which it is called).
\begin{funcdesc}{int}{x}
Convert a string or number to a plain integer. If the argument is a
- string, it must contain a possibly singed decimal number
+ string, it must contain a possibly signed decimal number
representable as a Python integer, possibly embedded in whitespace;
this behaves identical to \code{string.atoi(\var{x})}.
Otherwise, the argument may be a plain or
@@ -355,7 +355,7 @@ the interpreter.
\begin{funcdesc}{long}{x}
Convert a string or number to a long integer. If the argument is a
- string, it must contain a possibly singed decimal number of
+ string, it must contain a possibly signed decimal number of
arbitrary size, possibly embedded in whitespace;
this behaves identical to \code{string.atol(\var{x})}.
Otherwise, the argument may be a plain or