]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#13494: s/cast/convert/. Also add a link.
authorEzio Melotti <ezio.melotti@gmail.com>
Fri, 2 Dec 2011 17:47:24 +0000 (19:47 +0200)
committerEzio Melotti <ezio.melotti@gmail.com>
Fri, 2 Dec 2011 17:47:24 +0000 (19:47 +0200)
Doc/library/stdtypes.rst

index 26f200df7fc85b0667cd692f18bab90a79554bcb..7696ecb991fc6d7917595e5b32093f255f8fe31c 100644 (file)
@@ -2955,9 +2955,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