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

index 2ebf2da9f301e4f087ed49360c2b762fa9b575cb..db51e6dcea5c251a7a60055806c221e75549a6e2 100644 (file)
@@ -505,7 +505,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: