From: Benjamin Peterson Date: Tue, 25 Oct 2016 06:00:03 +0000 (-0700) Subject: fix name of keyword parameter to gc.collect() (closes #28525) X-Git-Tag: v3.6.0b3~64^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bc51a8af254ddc2c5074cc3914ffc818f401923c;p=thirdparty%2FPython%2Fcpython.git fix name of keyword parameter to gc.collect() (closes #28525) Patch from vierja. --- diff --git a/Doc/library/gc.rst b/Doc/library/gc.rst index 4af16a9dfdb3..87d682445bae 100644 --- a/Doc/library/gc.rst +++ b/Doc/library/gc.rst @@ -38,7 +38,7 @@ The :mod:`gc` module provides the following functions: Returns true if automatic collection is enabled. -.. function:: collect(generations=2) +.. function:: collect(generation=2) With no arguments, run a full collection. The optional argument *generation* may be an integer specifying which generation to collect (from 0 to 2). A