#11565: Fix several typos. Patch by Piotr Kasprzyk.
diff --git a/Modules/timemodule.c b/Modules/timemodule.c
index 8c40d21..a24728a 100644
--- a/Modules/timemodule.c
+++ b/Modules/timemodule.c
@@ -706,7 +706,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");