summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-04-14 20:32:36 +0000
committerAndrew M. Kuchling <amk@amk.ca>2006-04-14 20:32:36 +0000
commit8ed29143fc91977d70a5770ee04de6cb6db8e111 (patch)
tree8cdb45ddea4eb68bc7de9f2aed70b0685a6850bb
parentc187f33e2bb5f60b664cd5d94e79483d3adf2c41 (diff)
downloadcpython-git-8ed29143fc91977d70a5770ee04de6cb6db8e111.tar.gz
Typo fix
-rw-r--r--Doc/lib/libcollections.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libcollections.tex b/Doc/lib/libcollections.tex
index cea06e8b2c..d9bfa39106 100644
--- a/Doc/lib/libcollections.tex
+++ b/Doc/lib/libcollections.tex
@@ -310,7 +310,7 @@ languages):
When a letter is first encountered, it is missing from the mapping, so the
\member{default_factory} function calls \function{int()} to supply a default
-count of zero. The increment operation then builds of the count for each
+count of zero. The increment operation then builds up the count for each
letter. This technique makes counting simpler and faster than an equivalent
technique using \method{dict.get()}: