summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-01-14 14:45:38 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2014-01-14 14:45:38 (GMT)
commit1bef5c6cc8a8d40816541ef477f03d614415f1f9 (patch)
treeaedb4891da4272e00c84d0ed9c17226d84de1178 /Doc
parentf6cb6c5e112cb27a49b8cc268a7cfe71e0a960ad (diff)
parent26d5fab8c8a979d383db681f4c3d93b549a095ad (diff)
downloadcpython-1bef5c6cc8a8d40816541ef477f03d614415f1f9.zip
cpython-1bef5c6cc8a8d40816541ef477f03d614415f1f9.tar.gz
cpython-1bef5c6cc8a8d40816541ef477f03d614415f1f9.tar.bz2
Merge typo fix.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/tutorial/introduction.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst
index 26e6016..1225e20 100644
--- a/Doc/tutorial/introduction.rst
+++ b/Doc/tutorial/introduction.rst
@@ -58,7 +58,7 @@ For example::
The integer numbers (e.g. ``2``, ``4``, ``20``) have type :class:`int`,
the ones with a fractional part (e.g. ``5.0``, ``1.6``) have type
-:class:`float`. We will see more about numberic types later in the tutorial.
+:class:`float`. We will see more about numeric types later in the tutorial.
Division (``/``) always returns a float. To do :term:`floor division` and
get an integer result (discarding any fractional result) you can use the ``//``