#7116: str.join() takes an iterable.
diff --git a/Objects/stringobject.c b/Objects/stringobject.c
index 1233fc0..70d90d4 100644
--- a/Objects/stringobject.c
+++ b/Objects/stringobject.c
@@ -1814,10 +1814,10 @@
 
 
 PyDoc_STRVAR(join__doc__,
-"S.join(sequence) -> string\n\
+"S.join(iterable) -> string\n\
 \n\
 Return a string which is the concatenation of the strings in the\n\
-sequence.  The separator between elements is S.");
+iterable.  The separator between elements is S.");
 
 static PyObject *
 string_join(PyStringObject *self, PyObject *orig)