[Python-checkins] Fix typo in docs (GH-101025)

rhettinger webhook-mailer at python.org
Fri Jan 13 19:53:11 EST 2023


https://github.com/python/cpython/commit/010576c6ea7e687cf2cb572f3f40432df9692e4e
commit: 010576c6ea7e687cf2cb572f3f40432df9692e4e
branch: main
author: Raymond Hettinger <rhettinger at users.noreply.github.com>
committer: rhettinger <rhettinger at users.noreply.github.com>
date: 2023-01-13T18:53:06-06:00
summary:

Fix typo in docs (GH-101025)

files:
M Doc/library/math.rst

diff --git a/Doc/library/math.rst b/Doc/library/math.rst
index 0e888c4d4e42..797f32408eac 100644
--- a/Doc/library/math.rst
+++ b/Doc/library/math.rst
@@ -299,7 +299,7 @@ Number-theoretic and representation functions
 
    Roughly equivalent to::
 
-       sum(itertools.starmap(operator.mul, zip(p, q, strict=true)))
+       sum(itertools.starmap(operator.mul, zip(p, q, strict=True)))
 
    For float and mixed int/float inputs, the intermediate products
    and sums are computed with extended precision.



More information about the Python-checkins mailing list