Skip to content

Commit

Permalink
Fix a typo in Doc/faq/programming.rst (GH-31243)
Browse files Browse the repository at this point in the history
is not longer used -> is no longer used
  • Loading branch information
cooperlees committed Feb 14, 2022
1 parent 0d29e7a commit ff5a167
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/faq/programming.rst
Expand Up @@ -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.
Expand Down

0 comments on commit ff5a167

Please sign in to comment.