diff options
author | Raymond Hettinger <python@rcn.com> | 2005-06-17 10:27:50 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-06-17 10:27:50 (GMT) |
commit | 6d3195dd0ea0ee5dfa979749d3f622ce186bedb9 (patch) | |
tree | 3c3a63de0e01631b33fff61c9e74535a73870821 | |
parent | 25010f254987e743614363753479d89358ebf4b7 (diff) | |
download | cpython-6d3195dd0ea0ee5dfa979749d3f622ce186bedb9.zip cpython-6d3195dd0ea0ee5dfa979749d3f622ce186bedb9.tar.gz cpython-6d3195dd0ea0ee5dfa979749d3f622ce186bedb9.tar.bz2 |
Fix typo.
-rw-r--r-- | Doc/tut/tut.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 6ce8f01..51454b2 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -2024,7 +2024,7 @@ instance: ((12345, 54321, 'hello!'), (1, 2, 3, 4, 5)) \end{verbatim} -As you see, on output tuples are alway enclosed in parentheses, so +As you see, on output tuples are always enclosed in parentheses, so that nested tuples are interpreted correctly; they may be input with or without surrounding parentheses, although often parentheses are necessary anyway (if the tuple is part of a larger expression). |