summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoan Massich <mailsik@gmail.com>2019-03-18 00:34:22 +0100
committerMariatta <Mariatta@users.noreply.github.com>2019-03-17 16:34:22 -0700
commitdc69f69f14fb89511d018a3927fc6378a58d2def (patch)
tree541f9ce43957e33ae1fce8a73fcc840068db32ed
parentf683f464259715d620777d7ed568e701337a703a (diff)
downloadcpython-git-dc69f69f14fb89511d018a3927fc6378a58d2def.tar.gz
Fix typo in unittest.mock documentation: manger -> manager (GH-12352)
-rw-r--r--Doc/library/unittest.mock.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst
index c011e54e3e..ff7a54c51f 100644
--- a/Doc/library/unittest.mock.rst
+++ b/Doc/library/unittest.mock.rst
@@ -1440,7 +1440,7 @@ passed by keyword *after* any of the standard arguments created by :func:`patch`
>>> test_function()
If :func:`patch.multiple` is used as a context manager, the value returned by the
-context manger is a dictionary where created mocks are keyed by name::
+context manager is a dictionary where created mocks are keyed by name::
>>> with patch.multiple('__main__', thing=DEFAULT, other=DEFAULT) as values:
... assert 'other' in repr(values['other'])