Skip to content

Commit 5f353b7

Browse files
authored
Update functools.rst
Nicer wording
1 parent 8d24841 commit 5f353b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/functools.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The :mod:`functools` module defines the following functions:
4444

4545
>>> factorial(10) # no previously cached result, makes 11 recursive calls
4646
3628800
47-
>>> factorial(5) # just looks up cached value result
47+
>>> factorial(5) # no new calls, just returns the cached result
4848
120
4949
>>> factorial(12) # two new recursive calls, factorial(10) is cached
5050
479001600

0 commit comments

Comments
 (0)