]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in unittest.mock documentation: manger -> manager (GH-12352)
authorJoan Massich <mailsik@gmail.com>
Sun, 17 Mar 2019 23:34:22 +0000 (00:34 +0100)
committerMariatta <Mariatta@users.noreply.github.com>
Sun, 17 Mar 2019 23:34:22 +0000 (16:34 -0700)
Doc/library/unittest.mock.rst

index c011e54e3e73ec6d8462fcb27a72698d3242a0a9..ff7a54c51fbada2fba8499800a8c4da9571c6fe0 100644 (file)
@@ -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'])