summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-12-02 19:49:02 +0200
committerEzio Melotti <ezio.melotti@gmail.com>2011-12-02 19:49:02 +0200
commitc42512dfc6cff8cd9e8d5e673abdfd51a8ed4908 (patch)
treeef4e538de3b5aaea4fa6799157a091d4b7f5333f
parenta9a2ddf7be0d3940b581e9781818fc9c3e97299a (diff)
parentc1f26f6fc1aef965e27e2937765eda0decda03c6 (diff)
downloadcpython-git-c42512dfc6cff8cd9e8d5e673abdfd51a8ed4908.tar.gz
#13494: merge with 3.2.
-rw-r--r--Doc/library/stdtypes.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index ee76cd3401..49222f53ef 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -2772,9 +2772,9 @@ Boolean values are the two constant objects ``False`` and ``True``. They are
used to represent truth values (although other values can also be considered
false or true). In numeric contexts (for example when used as the argument to
an arithmetic operator), they behave like the integers 0 and 1, respectively.
-The built-in function :func:`bool` can be used to cast any value to a Boolean,
-if the value can be interpreted as a truth value (see section Truth Value
-Testing above).
+The built-in function :func:`bool` can be used to convert any value to a
+Boolean, if the value can be interpreted as a truth value (see section
+:ref:`truth` above).
.. index::
single: False