summaryrefslogtreecommitdiffstats
path: root/Doc/library/collections.rst
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-10-07 10:26:23 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-10-07 10:26:23 (GMT)
commit9955a373a8ae5a3ac9108afc436199277fdedff7 (patch)
tree3610b83bda6f7b3731ee7790579874c0bde14ae0 /Doc/library/collections.rst
parent85b8f45515a08afd75ca38b3760defabd219a632 (diff)
downloadcpython-9955a373a8ae5a3ac9108afc436199277fdedff7.zip
cpython-9955a373a8ae5a3ac9108afc436199277fdedff7.tar.gz
cpython-9955a373a8ae5a3ac9108afc436199277fdedff7.tar.bz2
Various minor typos in documentation and comments
Diffstat (limited to 'Doc/library/collections.rst')
-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 347cf1f..0971825 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -980,7 +980,7 @@ anywhere a regular dictionary is used.
The :class:`OrderedDict` constructor and :meth:`update` method both accept
keyword arguments, but their order is lost because Python's function call
-semantics pass-in keyword arguments using a regular unordered dictionary.
+semantics pass in keyword arguments using a regular unordered dictionary.
:class:`OrderedDict` Examples and Recipes