summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial
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)
commita44ec3ff4cdf0378acda7c12a3b8c586eca86682 (patch)
tree1a78a5ecc34b140f0e6d041b3db5018ff9dfe796 /Doc/tutorial
parent07f90476b954382e7a7ce95af696d90100a6eea1 (diff)
downloadcpython-a44ec3ff4cdf0378acda7c12a3b8c586eca86682.zip
cpython-a44ec3ff4cdf0378acda7c12a3b8c586eca86682.tar.gz
cpython-a44ec3ff4cdf0378acda7c12a3b8c586eca86682.tar.bz2
Closes #23181: codepoint -> code point
Diffstat (limited to 'Doc/tutorial')
-rw-r--r--Doc/tutorial/interpreter.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/interpreter.rst b/Doc/tutorial/interpreter.rst
index 19094f3..67f927f 100644
--- a/Doc/tutorial/interpreter.rst
+++ b/Doc/tutorial/interpreter.rst
@@ -140,7 +140,7 @@ encodings can be found in the Python Library Reference, in the section on
For example, to write Unicode literals including the Euro currency symbol, the
ISO-8859-15 encoding can be used, with the Euro symbol having the ordinal value
164. This script, when saved in the ISO-8859-15 encoding, will print the value
-8364 (the Unicode codepoint corresponding to the Euro symbol) and then exit::
+8364 (the Unicode code point corresponding to the Euro symbol) and then exit::
# -*- coding: iso-8859-15 -*-