[Python-checkins] cpython (2.7): fix typo in unittest docs (closes #26046)

benjamin.peterson python-checkins at python.org
Fri Jan 8 01:02:24 EST 2016


https://hg.python.org/cpython/rev/ff3655d6c257
changeset:   99806:ff3655d6c257
branch:      2.7
parent:      99795:8b20a606ecde
user:        Benjamin Peterson <benjamin at python.org>
date:        Thu Jan 07 22:01:26 2016 -0800
summary:
  fix typo in unittest docs (closes #26046)

Patch from Upendra Kumar.

files:
  Doc/library/unittest.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -147,7 +147,7 @@
 
 The :meth:`~TestCase.setUp` and :meth:`~TestCase.tearDown` methods allow you
 to define instructions that will be executed before and after each test method.
-They are covered in more details in the section :ref:`organizing-tests`.
+They are covered in more detail in the section :ref:`organizing-tests`.
 
 The final block shows a simple way to run the tests. :func:`unittest.main`
 provides a command-line interface to the test script.  When run from the command

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list