summaryrefslogtreecommitdiffstats
path: root/Doc/library/functools.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-19 15:37:07 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-19 15:37:07 (GMT)
commit43a259ff18760235ad53791593f91062dbc8642f (patch)
treecd08b8cbe4052fc3857a023ae3099a649ff176a7 /Doc/library/functools.rst
parent6d0b19f1e8f58c9fdf3cc022a95805657b9c8e0e (diff)
parent7d6dda4b783dc8720b354e5ede766fcb8407de14 (diff)
downloadcpython-43a259ff18760235ad53791593f91062dbc8642f.zip
cpython-43a259ff18760235ad53791593f91062dbc8642f.tar.gz
cpython-43a259ff18760235ad53791593f91062dbc8642f.tar.bz2
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 f9b90a8..9a8defe 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.