diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2012-08-14 17:51:31 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2012-08-14 17:51:31 (GMT) |
commit | 6ce21a3b848c75091412f08ceef43b314ac2c4c6 (patch) | |
tree | 6f6d5fd1d3f4a542f1c40bb11a38fab8ee5e62e4 /Doc/tutorial | |
parent | 92636bf243873bce70f7056c1fa8a125a1146526 (diff) | |
download | cpython-6ce21a3b848c75091412f08ceef43b314ac2c4c6.zip cpython-6ce21a3b848c75091412f08ceef43b314ac2c4c6.tar.gz cpython-6ce21a3b848c75091412f08ceef43b314ac2c4c6.tar.bz2 |
fix typo
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/inputoutput.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst index daad58d..8da972b 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 and |