summaryrefslogtreecommitdiff
path: root/Doc/library/functools.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-19 18:30:05 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-19 18:30:05 +0300
commit684a5f7e62f9143badb0b10bf11eea6fc7070d1b (patch)
tree896c5afe3489eae031ae8cdfc585b5bebea4df70 /Doc/library/functools.rst
parentfae38c35dd7c547bb3ab40589c05f4a0c2b85775 (diff)
downloadcpython-684a5f7e62f9143badb0b10bf11eea6fc7070d1b.tar.gz
Issue #19795: Improved more markups of True/False.
Diffstat (limited to 'Doc/library/functools.rst')
-rw-r--r--Doc/library/functools.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst
index f9b90a80ac..9a8defee54 100644
--- a/Doc/library/functools.rst
+++ b/Doc/library/functools.rst
@@ -56,7 +56,7 @@ The :mod:`functools` module defines the following functions:
grow without bound. The LRU feature performs best when *maxsize* is a
power-of-two.
- If *typed* is set to True, function arguments of different types will be
+ If *typed* is set to true, function arguments of different types will be
cached separately. For example, ``f(3)`` and ``f(3.0)`` will be treated
as distinct calls with distinct results.