]> granicus.if.org Git - python/commitdiff
Issue #20759: Fix some typos in the mock docs.
authorZachary Ware <zachary.ware@gmail.com>
Wed, 26 Feb 2014 15:34:43 +0000 (09:34 -0600)
committerZachary Ware <zachary.ware@gmail.com>
Wed, 26 Feb 2014 15:34:43 +0000 (09:34 -0600)
Doc/library/unittest.mock-examples.rst
Doc/library/unittest.mock.rst

index 49406d08d74023a31570cb36dd71f1a59f026fc0..554ef11727ef51573293bd1a757b4d5d349552af 100644 (file)
@@ -412,7 +412,7 @@ mock using the "as" form of the with statement:
 
 As an alternative `patch`, `patch.object` and `patch.dict` can be used as
 class decorators. When used in this way it is the same as applying the
-decorator indvidually to every method whose name starts with "test".
+decorator individually to every method whose name starts with "test".
 
 
 .. _further-examples:
index 6b9805c23f08e28e161593a953d2f37e986490b6..f805df3d3a52c2a28ef8261d939da2a649165739 100644 (file)
@@ -938,7 +938,7 @@ method:
 
 .. [#] The only exceptions are magic methods and attributes (those that have
        leading and trailing double underscores). Mock doesn't create these but
-       instead of raises an ``AttributeError``. This is because the interpreter
+       instead raises an ``AttributeError``. This is because the interpreter
        will often implicitly request these methods, and gets *very* confused to
        get a new Mock object when it expects a magic method. If you need magic
        method support see :ref:`magic methods <magic-methods>`.
@@ -1489,7 +1489,7 @@ Patching Descriptors and Proxy Objects
 Both patch_ and patch.object_ correctly patch and restore descriptors: class
 methods, static methods and properties. You should patch these on the *class*
 rather than an instance. They also work with *some* objects
-that proxy attribute access, like the `django setttings object
+that proxy attribute access, like the `django settings object
 <http://www.voidspace.org.uk/python/weblog/arch_d7_2010_12_04.shtml#e1198>`_.