#11515: fix several typos. Patch by Piotr Kasprzyk.
diff --git a/Modules/_struct.c b/Modules/_struct.c
index 71e71dd..c158eba 100644
--- a/Modules/_struct.c
+++ b/Modules/_struct.c
@@ -1162,7 +1162,7 @@
     case '>':
     case '!': /* Network byte order is big-endian */
         return bigendian_table;
-    case '=': { /* Host byte order -- different from native in aligment! */
+    case '=': { /* Host byte order -- different from native in alignment! */
         int n = 1;
         char *p = (char *) &n;
         if (*p == 1)