]> granicus.if.org Git - python/commitdiff
Fix typo. Found by David Pesta on docs@.
authorZachary Ware <zachary.ware@gmail.com>
Tue, 14 Jan 2014 14:44:49 +0000 (08:44 -0600)
committerZachary Ware <zachary.ware@gmail.com>
Tue, 14 Jan 2014 14:44:49 +0000 (08:44 -0600)
Doc/tutorial/introduction.rst

index 26e6016ae2a55d13592162cd8a403ae38f1006f9..1225e20f768c335115f11d96f71d922c4c564aa3 100644 (file)
@@ -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 ``//``