diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-01-14 14:44:49 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-01-14 14:44:49 (GMT) |
commit | 26d5fab8c8a979d383db681f4c3d93b549a095ad (patch) | |
tree | e9f3b603a6fed62f0546d9975ac0b985965b4573 /Doc/tutorial | |
parent | 2d1303676978e75985c4b24521cfd7cece24f153 (diff) | |
download | cpython-26d5fab8c8a979d383db681f4c3d93b549a095ad.zip cpython-26d5fab8c8a979d383db681f4c3d93b549a095ad.tar.gz cpython-26d5fab8c8a979d383db681f4c3d93b549a095ad.tar.bz2 |
Fix typo. Found by David Pesta on docs@.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/introduction.rst | 2 |
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 ``//`` |