#11565: Fix several typos. Patch by Piotr Kasprzyk.
diff --git a/Modules/timemodule.c b/Modules/timemodule.c
index 61c1ccc..51f472e 100644
--- a/Modules/timemodule.c
+++ b/Modules/timemodule.c
@@ -635,7 +635,7 @@
     buf.tm_wday = -1;  /* sentinel; original value ignored */
     tt = mktime(&buf);
     /* Return value of -1 does not necessarily mean an error, but tm_wday
-     * cannot remain set to -1 if mktime succedded. */
+     * cannot remain set to -1 if mktime succeeded. */
     if (tt == (time_t)(-1) && buf.tm_wday == -1) {
         PyErr_SetString(PyExc_OverflowError,
                         "mktime argument out of range");