#6994: fix typo in enumerate docstring
diff --git a/Objects/enumobject.c b/Objects/enumobject.c
index 0dc4eef..2c1c3f8 100644
--- a/Objects/enumobject.c
+++ b/Objects/enumobject.c
@@ -161,7 +161,7 @@
 PyDoc_STRVAR(enum_doc,
 "enumerate(iterable) -> iterator for index, value of iterable\n"
 "\n"
-"Return an enumerate object.  iterable must be an other object that supports\n"
+"Return an enumerate object.  iterable must be another object that supports\n"
 "iteration.  The enumerate object yields pairs containing a count (from\n"
 "zero) and a value yielded by the iterable argument.  enumerate is useful\n"
 "for obtaining an indexed list: (0, seq[0]), (1, seq[1]), (2, seq[2]), ...");