#8030: more docstring fix for builtin types.
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c
index 384b830..7376f1a 100644
--- a/Objects/tupleobject.c
+++ b/Objects/tupleobject.c
@@ -681,10 +681,10 @@
 }
 
 PyDoc_STRVAR(tuple_doc,
-"tuple() -> an empty tuple\n"
-"tuple(sequence) -> tuple initialized from sequence's items\n"
-"\n"
-"If the argument is a tuple, the return value is the same object.");
+"tuple() -> empty tuple\n\
+tuple(iterable) -> tuple initialized from iterable's items\n\
+\n\
+If the argument is a tuple, the return value is the same object.");
 
 static PySequenceMethods tuple_as_sequence = {
 	(lenfunc)tuplelength,			/* sq_length */