summaryrefslogtreecommitdiffstats
path: root/Doc/library/functions.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2015-01-14 07:26:30 (GMT)
committerGeorg Brandl <georg@python.org>2015-01-14 07:26:30 (GMT)
commit3be472b5f777fe5ebc0c1f4b6c0d96c73352db9c (patch)
treeaddfeeb14af6240b6454926ef9a4cce2a51f9207 /Doc/library/functions.rst
parent1a8ada89f9b3d9b10654adce979046d865906a44 (diff)
downloadcpython-3be472b5f777fe5ebc0c1f4b6c0d96c73352db9c.zip
cpython-3be472b5f777fe5ebc0c1f4b6c0d96c73352db9c.tar.gz
cpython-3be472b5f777fe5ebc0c1f4b6c0d96c73352db9c.tar.bz2
Closes #23181: codepoint -> code point
Diffstat (limited to 'Doc/library/functions.rst')
-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 8a0c336..c6b66b5 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -156,7 +156,7 @@ are always available. They are listed here in alphabetical order.
.. function:: chr(i)
- Return the string representing a character whose Unicode codepoint is the
+ Return the string representing a character whose Unicode code point is the
integer *i*. For example, ``chr(97)`` returns the string ``'a'``, while
``chr(931)`` returns the string ``'Σ'``. This is the inverse of :func:`ord`.