#11565: Fix several typos. Patch by Piotr Kasprzyk.
diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py
index a1875ff..da101e1 100644
--- a/Lib/test/test_itertools.py
+++ b/Lib/test/test_itertools.py
@@ -1490,7 +1490,7 @@
 ...     return chain(iterable, repeat(None))
 
 >>> def ncycles(iterable, n):
-...     "Returns the seqeuence elements n times"
+...     "Returns the sequence elements n times"
 ...     return chain(*repeat(iterable, n))
 
 >>> def dotproduct(vec1, vec2):