diff options
author | Raymond Hettinger <python@rcn.com> | 2004-11-18 06:14:27 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-11-18 06:14:27 (GMT) |
commit | 88c2595bf66fa8991d48f9546d72e97bba59f086 (patch) | |
tree | dda18e76afb1c919c39e6c1715423adf400a6d59 /Doc/tut | |
parent | b2d5a8efd5044274f4f36654ab4dcb28b5b5135e (diff) | |
download | cpython-88c2595bf66fa8991d48f9546d72e97bba59f086.zip cpython-88c2595bf66fa8991d48f9546d72e97bba59f086.tar.gz cpython-88c2595bf66fa8991d48f9546d72e97bba59f086.tar.bz2 |
SF bug #1067023: A small typo
Make a minor clarification between "written" and "displayed".
Diffstat (limited to 'Doc/tut')
-rw-r--r-- | Doc/tut/tut.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 1794ba4..155ee5e 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -464,8 +464,8 @@ or C); parentheses can be used for grouping. For example: -3 \end{verbatim} -Like in C, the equal sign (\character{=}) is used to assign a value to a -variable. The value of an assignment is not written: +The equal sign (\character{=}) is used to assign a value to a variable. +Afterwards, no result is displayed before the next interactive prompt: \begin{verbatim} >>> width = 20 |