]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in docs (GH-101025)
authorRaymond Hettinger <rhettinger@users.noreply.github.com>
Sat, 14 Jan 2023 00:53:06 +0000 (18:53 -0600)
committerGitHub <noreply@github.com>
Sat, 14 Jan 2023 00:53:06 +0000 (18:53 -0600)
Doc/library/math.rst

index 0e888c4d4e423f520ad91de620184fee93f0e17b..797f32408eac3d9b1398637570cfef41ac8212b3 100644 (file)
@@ -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.