Fix typo.

This commit is contained in:
Ezio Melotti 2011-10-25 09:41:13 +03:00
parent 9a1b956dea
commit 963004d1d8
1 changed files with 1 additions and 1 deletions

View 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`.