]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix a typo in Doc/faq/programming.rst (GH-31243)
authorCooper Lees <me@cooperlees.com>
Mon, 14 Feb 2022 18:49:28 +0000 (10:49 -0800)
committerGitHub <noreply@github.com>
Mon, 14 Feb 2022 18:49:28 +0000 (10:49 -0800)
is not longer used -> is no longer used

Doc/faq/programming.rst

index c156390d375e10332e69f5d98b82825805827e28..a1adf851bdded71faba43b2ea098fbfc080e806a 100644 (file)
@@ -1908,7 +1908,7 @@ The *cached_property* approach only works with methods that do not take
 any arguments.  It does not create a reference to the instance.  The
 cached method result will be kept only as long as the instance is alive.
 
-The advantage is that when an instance is not longer used, the cached
+The advantage is that when an instance is no longer used, the cached
 method result will be released right away.  The disadvantage is that if
 instances accumulate, so too will the accumulated method results.  They
 can grow without bound.