summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-10-25 06:41:13 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-10-25 06:41:13 (GMT)
commit963004d1d8ce57bee5624ab1256e7f951f595ec2 (patch)
tree695598b028d39cbd4fa077f3dc8041b569d23f68 /Doc/library
parent9a1b956deaddb06341d6cbfa16af9d4eee196e99 (diff)
downloadcpython-963004d1d8ce57bee5624ab1256e7f951f595ec2.zip
cpython-963004d1d8ce57bee5624ab1256e7f951f595ec2.tar.gz
cpython-963004d1d8ce57bee5624ab1256e7f951f595ec2.tar.bz2
Fix typo.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/functions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index b44ed99..ced3745 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -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`.