From: Ansab Gillani <56605828+ansabgillani@users.noreply.github.com> Date: Sat, 27 Aug 2022 05:33:29 +0000 (+0500) Subject: fixes gh-96292: Fix Trivial Typo in cpython/Modules/atexitmodule.c (#96327) X-Git-Tag: v3.12.0a1~547 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0ace820bec8892d621a4aadc1feb6c56e25560bf;p=thirdparty%2FPython%2Fcpython.git fixes gh-96292: Fix Trivial Typo in cpython/Modules/atexitmodule.c (#96327) --- diff --git a/Modules/atexitmodule.c b/Modules/atexitmodule.c index e806730aa9cf..a1c511e09d70 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)