Fix typo in comment
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index 3ad7039..e157c3d 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -2207,9 +2207,9 @@
 	}
 	if (outlen != recvlen) {
 		/* We did not read as many bytes as we anticipated, resize the
-		   string if possible and be succesful. */
+		   string if possible and be successful. */
 		if (PyBytes_Resize(buf, outlen) < 0)
-			/* Oopsy, not so succesful after all. */
+			/* Oopsy, not so successful after all. */
 			return NULL;
 	}