summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnsab Gillani <56605828+ansabgillani@users.noreply.github.com>2022-08-27 05:33:29 (GMT)
committerGitHub <noreply@github.com>2022-08-27 05:33:29 (GMT)
commit0ace820bec8892d621a4aadc1feb6c56e25560bf (patch)
tree71fbb63934f124bea5161f101ebf5d64a86d95dc
parente53444051018af3351cc26c4bf1ed2d380292016 (diff)
downloadcpython-0ace820bec8892d621a4aadc1feb6c56e25560bf.zip
cpython-0ace820bec8892d621a4aadc1feb6c56e25560bf.tar.gz
cpython-0ace820bec8892d621a4aadc1feb6c56e25560bf.tar.bz2
fixes gh-96292: Fix Trivial Typo in cpython/Modules/atexitmodule.c (#96327)
-rw-r--r--Modules/atexitmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/atexitmodule.c b/Modules/atexitmodule.c
index e806730..a1c511e 100644
--- a/Modules/atexitmodule.c
+++ b/Modules/atexitmodule.c
@@ -185,7 +185,7 @@ PyDoc_STRVAR(atexit_run_exitfuncs__doc__,
\n\
Run all registered exit functions.\n\
\n\
-If a callaback raises an exception, it is logged with sys.unraisablehook.");
+If a callback raises an exception, it is logged with sys.unraisablehook.");
static PyObject *
atexit_run_exitfuncs(PyObject *module, PyObject *unused)