summaryrefslogtreecommitdiff
path: root/Doc/library/unittest.mock.rst
diff options
context:
space:
mode:
authorAndrés Delfino <adelfino@gmail.com>2018-09-14 14:13:09 -0300
committerPetr Viktorin <encukou@gmail.com>2018-09-14 10:13:09 -0700
commit271818fe279df5ab292789f97c3a52c477bd8f13 (patch)
treed53219504a31b64f3f90917577cada08b7bff1cf /Doc/library/unittest.mock.rst
parentc9d66f0ed4f07b9d184d22abbfdd4c3c8e2702df (diff)
downloadcpython-git-271818fe279df5ab292789f97c3a52c477bd8f13.tar.gz
Fix "Python" casing in a few places (GH-9001)
Diffstat (limited to 'Doc/library/unittest.mock.rst')
-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 d1b18d08f7..06009e4a09 100644
--- a/Doc/library/unittest.mock.rst
+++ b/Doc/library/unittest.mock.rst
@@ -98,7 +98,7 @@ mock (or other object) during the test and restored when the test ends:
.. note::
When you nest patch decorators the mocks are passed in to the decorated
- function in the same order they applied (the normal *python* order that
+ function in the same order they applied (the normal *Python* order that
decorators are applied). This means from the bottom up, so in the example
above the mock for ``module.ClassName1`` is passed in first.