Fix typo in atexit documentation. (GH-4419)

`kargs` -> `kwargs`
This commit is contained in:
Erik Bray 2017-11-16 17:48:52 +01:00 committed by Mariatta
parent cede8c9edb
commit d505a29a15
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ program is killed by a signal not handled by Python, when a Python fatal
internal error is detected, or when :func:`os._exit` is called.
.. function:: register(func, *args, **kargs)
.. function:: register(func, *args, **kwargs)
Register *func* as a function to be executed at termination. Any optional
arguments that are to be passed to *func* must be passed as arguments to