Fix comment about PyObject_IsTrue. (GH-22343)

The `for` statement doesn't use a condition and this function, the `while` statement does.
diff --git a/Objects/object.c b/Objects/object.c
index fe37344..9889503 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -1387,7 +1387,7 @@
 }
 
 
-/* Test a value used as condition, e.g., in a for or if statement.
+/* Test a value used as condition, e.g., in a while or if statement.
    Return -1 if an error occurred */
 
 int