diff options
author | Fred Drake <fdrake@acm.org> | 1999-07-02 14:29:14 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-07-02 14:29:14 (GMT) |
commit | 82ac24ffb002292e9ea90f1687b8fbae1eaf6fde (patch) | |
tree | 6a119f716e5718fd47a077541feb73a3adff6295 /Doc/lib | |
parent | 0452007dccc079be508acedac4951b9893a34e78 (diff) | |
download | cpython-82ac24ffb002292e9ea90f1687b8fbae1eaf6fde.zip cpython-82ac24ffb002292e9ea90f1687b8fbae1eaf6fde.tar.gz cpython-82ac24ffb002292e9ea90f1687b8fbae1eaf6fde.tar.bz2 |
Minor markup nit.
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/libstdtypes.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex index f24da0c..517cc88 100644 --- a/Doc/lib/libstdtypes.tex +++ b/Doc/lib/libstdtypes.tex @@ -190,8 +190,8 @@ integer is smaller than long integer is smaller than floating point is smaller than complex. Comparisons between numbers of mixed type use the same rule.\footnote{ As a consequence, the list \code{[1, 2]} is considered equal - to \code{[1.0, 2.0]}, and similar for tuples.} -The functions \function{int()}, \function{long()}, \function{float()}, + to \code{[1.0, 2.0]}, and similar for tuples. +} The functions \function{int()}, \function{long()}, \function{float()}, and \function{complex()} can be used to coerce numbers to a specific type. \index{arithmetic} |