diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-01-13 14:17:24 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-01-13 14:17:24 (GMT) |
commit | 82f34ada45f96c13eb68927d6beccdcbab2c77b3 (patch) | |
tree | 136839c19a7d640d61b84b04129a76e0063b87ba /Doc/library/unittest.mock.rst | |
parent | 38dc250521d2c34f58537b25301a0ac9a4bb6c85 (diff) | |
download | cpython-82f34ada45f96c13eb68927d6beccdcbab2c77b3.zip cpython-82f34ada45f96c13eb68927d6beccdcbab2c77b3.tar.gz cpython-82f34ada45f96c13eb68927d6beccdcbab2c77b3.tar.bz2 |
fix instances of consecutive articles (closes #23221)
Patch by Karan Goel.
Diffstat (limited to 'Doc/library/unittest.mock.rst')
-rw-r--r-- | Doc/library/unittest.mock.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst index b242438..845e0c4 100644 --- a/Doc/library/unittest.mock.rst +++ b/Doc/library/unittest.mock.rst @@ -1499,7 +1499,7 @@ where we have imported it. The patching should look like:: However, consider the alternative scenario where instead of ``from a import SomeClass`` module b does ``import a`` and ``some_function`` uses ``a.SomeClass``. Both of these import forms are common. In this case the class we want to patch is -being looked up on the a module and so we have to patch ``a.SomeClass`` instead:: +being looked up in the module and so we have to patch ``a.SomeClass`` instead:: @patch('a.SomeClass') |