[Python-checkins] cpython (3.2): Fix typo.

ezio.melotti python-checkins at python.org
Tue Oct 25 08:42:09 CEST 2011


http://hg.python.org/cpython/rev/acaca0975a41
changeset:   73118:acaca0975a41
branch:      3.2
parent:      73113:b0aabf83afb6
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Tue Oct 25 09:41:13 2011 +0300
summary:
  Fix typo.

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


diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -916,7 +916,7 @@
 .. XXX works for bytes too, but should it?
 .. function:: ord(c)
 
-   Given a string representing one Uncicode character, return an integer
+   Given a string representing one Unicode character, return an integer
    representing the Unicode code
    point of that character.  For example, ``ord('a')`` returns the integer ``97``
    and ``ord('\u2020')`` returns ``8224``.  This is the inverse of :func:`chr`.

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


More information about the Python-checkins mailing list