]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo.
authorEzio Melotti <ezio.melotti@gmail.com>
Tue, 25 Oct 2011 06:41:13 +0000 (09:41 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Tue, 25 Oct 2011 06:41:13 +0000 (09:41 +0300)
Doc/library/functions.rst

index b44ed9928e73a8021c49f9e41630e8f682be2fda..ced3745174762e572181d3c6e89110a487ff26ea 100644 (file)
@@ -916,7 +916,7 @@ are always available.  They are listed here in alphabetical order.
 .. 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`.