summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2007-10-07 23:12:41 (GMT)
committerBrett Cannon <bcannon@gmail.com>2007-10-07 23:12:41 (GMT)
commit85c1ba5d742779eec3148377ce6d8d359d318263 (patch)
tree8491174ac2394b0850fc3f122128c9d3715339fe /Doc/library
parentb35f128711e3dc618d92ab75eda3ba217904935e (diff)
downloadcpython-85c1ba5d742779eec3148377ce6d8d359d318263.zip
cpython-85c1ba5d742779eec3148377ce6d8d359d318263.tar.gz
cpython-85c1ba5d742779eec3148377ce6d8d359d318263.tar.bz2
Fix a minor typo.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/stdtypes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 62935a1..61b589f 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -218,7 +218,7 @@ Numeric Types --- :class:`int`, :class:`float`, :class:`complex`
There are three distinct numeric types: :dfn:`integers`, :dfn:`floating point
numbers`, and :dfn:`complex numbers`. In addition, Booleans are a subtype of
-plain integers. Integers have unlimited precision. loating point numbers are
+plain integers. Integers have unlimited precision. Floating point numbers are
implemented using :ctype:`double` in C. All bets on their precision are off
unless you happen to know the machine you are working with.