]> granicus.if.org Git - python/commitdiff
Fix typo in assertSequenceEqual docstring.
authorR. David Murray <rdmurray@bitdance.com>
Fri, 29 Jan 2010 22:26:45 +0000 (22:26 +0000)
committerR. David Murray <rdmurray@bitdance.com>
Fri, 29 Jan 2010 22:26:45 +0000 (22:26 +0000)
Lib/unittest.py

index 9c3024af69305bbbbf5275b699f75feebb9d2830..c27fac1cbf9881efe3ea5d54b81f3ca44b70f6f3 100644 (file)
@@ -692,7 +692,7 @@ class TestCase(object):
     def assertSequenceEqual(self, seq1, seq2, msg=None, seq_type=None):
         """An equality assertion for ordered sequences (like lists and tuples).
 
-        For the purposes of this function, a valid orderd sequence type is one
+        For the purposes of this function, a valid ordered sequence type is one
         which can be indexed, has a length, and has an equality operator.
 
         Args: