summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-01-29 22:26:45 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-01-29 22:26:45 (GMT)
commitd1a9058dda74e6d82386936b882abc97546e2e60 (patch)
tree34ec79eb838acdde012318d08405d5756de57a17 /Lib
parent60eab4618d021b317ce164a52527bb426f20a593 (diff)
downloadcpython-d1a9058dda74e6d82386936b882abc97546e2e60.zip
cpython-d1a9058dda74e6d82386936b882abc97546e2e60.tar.gz
cpython-d1a9058dda74e6d82386936b882abc97546e2e60.tar.bz2
Fix typo in assertSequenceEqual docstring.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/unittest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest.py b/Lib/unittest.py
index 9c3024a..c27fac1 100644
--- a/Lib/unittest.py
+++ b/Lib/unittest.py
@@ -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: