From f4ff0c4a7175831e6d9d8ff4d82f8fd258f99c57 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Fri, 13 Jan 2023 18:04:02 -0600 Subject: [PATCH] Fix typo in docs --- Doc/library/math.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/math.rst b/Doc/library/math.rst index 0e888c4d4e423f..797f32408eac3d 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.