From: Ezio Melotti Date: Tue, 25 Oct 2011 06:41:13 +0000 (+0300) Subject: Fix typo. X-Git-Tag: v3.2.3rc1~474 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=963004d1d8ce57bee5624ab1256e7f951f595ec2;p=thirdparty%2FPython%2Fcpython.git Fix typo. --- diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index b44ed9928e73..ced374517476 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`.