summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-08-29 17:50:42 +0300
committerEzio Melotti <ezio.melotti@gmail.com>2012-08-29 17:50:42 +0300
commit49ccd514d2e29048062a3a669fed98329807c765 (patch)
tree989cedbb4fc6407ee4adeec85475522aecd4fdd4
parent28a6cfaefc41a4e4bfa6dd0b54318c0465987652 (diff)
downloadcpython-git-49ccd514d2e29048062a3a669fed98329807c765.tar.gz
Add missing comma.
-rw-r--r--Doc/library/unittest.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index 4d3216b3df..72a3a7b51a 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -1271,7 +1271,7 @@ Test cases
.. method:: assertListEqual(first, second, msg=None)
assertTupleEqual(first, second, msg=None)
- Tests that two lists or tuples are equal. If not an error message is
+ Tests that two lists or tuples are equal. If not, an error message is
constructed that shows only the differences between the two. An error
is also raised if either of the parameters are of the wrong type.
These methods are used by default when comparing lists or tuples with