annoying whitespace inconsistency
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c
index 8c86c38..7282393 100644
--- a/Modules/mathmodule.c
+++ b/Modules/mathmodule.c
@@ -128,7 +128,7 @@
       "fabs(x)\n\nReturn the absolute value of the real x.")
 FUNC1(floor, floor,
       "floor(x)\n\nReturn the floor of x as a real.")
-     FUNC2(fmod, fmod,
+FUNC2(fmod, fmod,
       "fmod(x,y)\n\nReturn fmod(x, y), according to platform C."
       "  x % y may differ.")
 FUNC2(hypot, hypot,