summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r--Python/sysmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index 723fcdb..6810240 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -425,7 +425,7 @@ PySys_AddAuditHook(Py_AuditHookFunction hook, void *userData)
e->userData = userData;
if (runtime->audit_hooks.mutex == NULL) {
- /* The runtime must not be initailized yet. */
+ /* The runtime must not be initialized yet. */
add_audit_hook_entry_unlocked(runtime, e);
}
else {