summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-12-28 08:02:38 (GMT)
committerGeorg Brandl <georg@python.org>2009-12-28 08:02:38 (GMT)
commitaf5c23874603ac3c67a6cd6e6a56abad38bbe872 (patch)
treed9ebc2ab07c826efe87a2f119177da011a3cb9c3 /Doc
parent8668c2214440d748acd2470a66bb1468b27188d0 (diff)
downloadcpython-af5c23874603ac3c67a6cd6e6a56abad38bbe872.zip
cpython-af5c23874603ac3c67a6cd6e6a56abad38bbe872.tar.gz
cpython-af5c23874603ac3c67a6cd6e6a56abad38bbe872.tar.bz2
Merged revisions 77084 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r77084 | georg.brandl | 2009-12-28 09:01:59 +0100 (Mo, 28 Dez 2009) | 1 line #7586: fix typo. ........
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/collections.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index 377c144..fee59cf 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -794,7 +794,7 @@ a fixed-width print format:
Point: x= 3.000 y= 4.000 hypot= 5.000
Point: x=14.000 y= 0.714 hypot=14.018
-The subclass shown above sets ``__slots__`` to an empty tuple. This keeps
+The subclass shown above sets ``__slots__`` to an empty tuple. This helps
keep memory requirements low by preventing the creation of instance dictionaries.