summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-10-07 11:13:55 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-10-07 11:13:55 (GMT)
commit585a6acfef1a03955bc2561aab7b2acfbb6bb2d4 (patch)
treecd3684ef639760f403da82b1448786ebd9c8379d /Doc
parent6568714366e8c7c7222681a5ddcc13c57b7495a2 (diff)
parentec1aa5c2a1d0848351dd9d7d2758c553f18e56b2 (diff)
downloadcpython-585a6acfef1a03955bc2561aab7b2acfbb6bb2d4.zip
cpython-585a6acfef1a03955bc2561aab7b2acfbb6bb2d4.tar.gz
cpython-585a6acfef1a03955bc2561aab7b2acfbb6bb2d4.tar.bz2
Merge typo fixes from 3.5
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/collections.rst2
-rw-r--r--Doc/library/test.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index 40809d9..2e2e16f 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -1018,7 +1018,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.
.. versionchanged:: 3.5
The items, keys, and values :term:`views <dictionary view>`
diff --git a/Doc/library/test.rst b/Doc/library/test.rst
index f7ad475..85cab3b 100644
--- a/Doc/library/test.rst
+++ b/Doc/library/test.rst
@@ -160,7 +160,7 @@ Running tests using the command-line interface
The :mod:`test` package can be run as a script to drive Python's regression
test suite, thanks to the :option:`-m` option: :program:`python -m test`. Under
the hood, it uses :mod:`test.regrtest`; the call :program:`python -m
-test.regrtest` used in previous Python versions still works). Running the
+test.regrtest` used in previous Python versions still works. Running the
script by itself automatically starts running all regression tests in the
:mod:`test` package. It does this by finding all modules in the package whose
name starts with ``test_``, importing them, and executing the function