summaryrefslogtreecommitdiff
path: root/Doc/tutorial
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-03-31 23:01:27 +0000
committerGeorg Brandl <georg@python.org>2009-03-31 23:01:27 +0000
commita08867d8a147201cd10f580e87b126e034770428 (patch)
treee510925a2d88fe8421a82b98f3b74938a25fa312 /Doc/tutorial
parent3bb5a9642bc49ebab1ca0f4369f8e3ca485421d7 (diff)
downloadcpython-git-a08867d8a147201cd10f580e87b126e034770428.tar.gz
Dont shout to users.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r--Doc/tutorial/datastructures.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst
index ec62fad33b..a56fd2b042 100644
--- a/Doc/tutorial/datastructures.rst
+++ b/Doc/tutorial/datastructures.rst
@@ -405,7 +405,7 @@ This is called, appropriately enough, *sequence unpacking* and works for any
sequence on the right-hand side. Sequence unpacking requires the list of
variables on the left to have the same number of elements as the length of the
sequence. Note that multiple assignment is really just a combination of tuple
-packing and sequence unpacking!
+packing and sequence unpacking.
.. XXX Add a bit on the difference between tuples and lists.