Fix tortured comment -- I must be on drugs today.
diff --git a/Objects/abstract.c b/Objects/abstract.c
index 3609948..c44f8c2 100644
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -1238,8 +1238,8 @@
 	if (PyTuple_CheckExact(v)) {
 		/* Note that we can't know whether it's safe to return
 		   a tuple *subclass* instance as-is, hence the restriction
-		   to exact tuples here.  In contrasts, lists always make
-		   a copy, so there's need for exactness below. */
+		   to exact tuples here.  In contrast, lists always make
+		   a copy, so there's no need for exactness below. */
 		Py_INCREF(v);
 		return v;
 	}