Fix a typo in Doc/faq/programming.rst (GH-31243)

is not longer used -> is no longer used
(cherry picked from commit ff5a167597)

Co-authored-by: Cooper Lees <me@cooperlees.com>
This commit is contained in:
Miss Islington (bot) 2022-02-14 11:08:39 -08:00 committed by GitHub
parent 841c77d802
commit a606c6a350
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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.