summaryrefslogtreecommitdiff
path: root/Doc/tutorial/inputoutput.rst
diff options
context:
space:
mode:
authorSandro Tosi <sandro.tosi@gmail.com>2012-08-14 19:51:43 +0200
committerSandro Tosi <sandro.tosi@gmail.com>2012-08-14 19:51:43 +0200
commit98cdadec3ddbdfc18bb4fa1d8c43a69a01c0ff76 (patch)
treef9e45f4e61a2133be5952b107af2aa180d89007e /Doc/tutorial/inputoutput.rst
parent0f5a8fa0956f3a9de1dfeeae8e14dd78d439d1a2 (diff)
downloadcpython-98cdadec3ddbdfc18bb4fa1d8c43a69a01c0ff76.tar.gz
fix typo
Diffstat (limited to 'Doc/tutorial/inputoutput.rst')
-rw-r--r--Doc/tutorial/inputoutput.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst
index 00f5aea609..45de518de8 100644
--- a/Doc/tutorial/inputoutput.rst
+++ b/Doc/tutorial/inputoutput.rst
@@ -37,7 +37,7 @@ or :func:`str` functions.
The :func:`str` function is meant to return representations of values which are
fairly human-readable, while :func:`repr` is meant to generate representations
which can be read by the interpreter (or will force a :exc:`SyntaxError` if
-there is not equivalent syntax). For objects which don't have a particular
+there is no equivalent syntax). For objects which don't have a particular
representation for human consumption, :func:`str` will return the same value as
:func:`repr`. Many values, such as numbers or structures like lists and
dictionaries, have the same representation using either function. Strings, in