summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-02-14 19:08:39 (GMT)
committerGitHub <noreply@github.com>2022-02-14 19:08:39 (GMT)
commita606c6a350133a2bebff8bca48129f39de885218 (patch)
treeb99a0d3ef7bf5c974fdf19187d9edd3db9764cd6 /Doc
parent841c77d802e9ee8845fa3152700474021efe03fd (diff)
downloadcpython-a606c6a350133a2bebff8bca48129f39de885218.zip
cpython-a606c6a350133a2bebff8bca48129f39de885218.tar.gz
cpython-a606c6a350133a2bebff8bca48129f39de885218.tar.bz2
Fix a typo in Doc/faq/programming.rst (GH-31243)
is not longer used -> is no longer used (cherry picked from commit ff5a16759744ee0a43c5d1c209f47e256abc7718) Co-authored-by: Cooper Lees <me@cooperlees.com>
Diffstat (limited to 'Doc')
-rw-r--r--Doc/faq/programming.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index 154563a..a6831ff 100644
--- a/Doc/faq/programming.rst
+++ b/Doc/faq/programming.rst
@@ -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.