diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-08-29 05:40:58 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-08-29 05:40:58 (GMT) |
commit | d219e7f986a9b777c969614bf21967fd0c44df69 (patch) | |
tree | ed459274f501663429993fb624de31b9b6b44272 | |
parent | 7b60464ceb845c3117e9524b17f30443423c3b9d (diff) | |
download | cpython-d219e7f986a9b777c969614bf21967fd0c44df69.zip cpython-d219e7f986a9b777c969614bf21967fd0c44df69.tar.gz cpython-d219e7f986a9b777c969614bf21967fd0c44df69.tar.bz2 |
Fix a couple of typos.
-rw-r--r-- | Lib/doctest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/doctest.py b/Lib/doctest.py index fe734b3..32d076a 100644 --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -1561,7 +1561,7 @@ class DocTestFailure(Exception): - test: the DocTest object being run - - excample: the Example object that failed + - example: the Example object that failed - got: the actual output """ @@ -1580,7 +1580,7 @@ class UnexpectedException(Exception): - test: the DocTest object being run - - excample: the Example object that failed + - example: the Example object that failed - exc_info: the exception info """ |