[Python-checkins] cpython (merge 3.3 -> default): Merge typo fix.

zach.ware python-checkins at python.org
Tue Jan 14 15:46:00 CET 2014


http://hg.python.org/cpython/rev/e38225008f2e
changeset:   88476:e38225008f2e
parent:      88474:1102ddea5c60
parent:      88475:3be65ed4fbe8
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Tue Jan 14 08:45:38 2014 -0600
summary:
  Merge typo fix.

files:
  Doc/tutorial/introduction.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst
--- a/Doc/tutorial/introduction.rst
+++ b/Doc/tutorial/introduction.rst
@@ -58,7 +58,7 @@
 
 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 ``//``

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list