]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in atexit documentation. (GH-4419)
authorErik Bray <erik.m.bray@gmail.com>
Thu, 16 Nov 2017 16:48:52 +0000 (17:48 +0100)
committerMariatta <Mariatta@users.noreply.github.com>
Thu, 16 Nov 2017 16:48:52 +0000 (08:48 -0800)
`kargs` -> `kwargs`

Doc/library/atexit.rst

index 1d84d4587fd9c009c4eb207fac24476609897666..5c60b604c68301e020144e582d45247038ffebc6 100644 (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