bpo-43210: Fix byteswap comment in sha512.module.c (GH-24518)

diff --git a/Modules/sha512module.c b/Modules/sha512module.c
index 062343e..0d8f51e 100644
--- a/Modules/sha512module.c
+++ b/Modules/sha512module.c
@@ -17,7 +17,7 @@
 /* SHA objects */
 
 #include "Python.h"
-#include "pycore_bitutils.h"      // _Py_bswap32()
+#include "pycore_bitutils.h"      // _Py_bswap64()
 #include "structmember.h"         // PyMemberDef
 #include "hashlib.h"
 #include "pystrhex.h"