diff options
author | Inada Naoki <songofacandy@gmail.com> | 2023-06-30 04:00:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-30 04:00:22 (GMT) |
commit | 77ddc9a7b1b28c8b8aee6cc97e483185a56819a6 (patch) | |
tree | c1ae461eda86c625f3defa850b922841c9e3374d /Python/sysmodule.c | |
parent | cd580910e10dcfffa364d08ee5a6f0257d031baf (diff) | |
download | cpython-77ddc9a7b1b28c8b8aee6cc97e483185a56819a6.zip cpython-77ddc9a7b1b28c8b8aee6cc97e483185a56819a6.tar.gz cpython-77ddc9a7b1b28c8b8aee6cc97e483185a56819a6.tar.bz2 |
fix typos (#106247)
Most typos are in comments, but two typos are in docstring.
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 2 |
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 { |