summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2021-09-29 09:49:45 +0200
committerGitHub <noreply@github.com>2021-09-29 00:49:45 -0700
commitcce3693f14060433fcf52e2ba034c1b77a26c9e5 (patch)
tree4a866a08d6674fa9da108b7f94f79dc89166e47d
parentdaa0a4434fa3ef281f9df65f7bb6098d31e1e400 (diff)
downloadcython-cce3693f14060433fcf52e2ba034c1b77a26c9e5.tar.gz
Fix typo discovered by codespell (#4387)
-rw-r--r--Cython/Utility/ModuleSetupCode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Utility/ModuleSetupCode.c b/Cython/Utility/ModuleSetupCode.c
index ee33ec194..4bced6cac 100644
--- a/Cython/Utility/ModuleSetupCode.c
+++ b/Cython/Utility/ModuleSetupCode.c
@@ -1395,7 +1395,7 @@ static int __Pyx_check_binary_version(void) {
if (ctversion[0] != rtversion[0] || ctversion[2] != rtversion[2]) {
char message[200];
PyOS_snprintf(message, sizeof(message),
- "compiletime version %s of module '%.100s' "
+ "compile time version %s of module '%.100s' "
"does not match runtime version %s",
ctversion, __Pyx_MODULE_NAME, rtversion);
return PyErr_WarnEx(NULL, message, 1);