From: Gaurav Kamath Date: Sun, 11 Oct 2020 18:13:43 +0000 (-0700) Subject: Fix typo (GH-22582) X-Git-Tag: v3.10.0a2~208 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8197a93208fea3b56e012272b6cf3f0c2c582d4a;p=thirdparty%2FPython%2Fcpython.git Fix typo (GH-22582) /af/of/s Automerge-Triggered-By: @Mariatta --- diff --git a/Doc/library/math.rst b/Doc/library/math.rst index bbf64643ff59..145bac4966e1 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -130,7 +130,7 @@ Number-theoretic and representation functions Return the greatest common divisor of the specified integer arguments. If any of the arguments is nonzero, then the returned value is the largest - positive integer that is a divisor af all arguments. If all arguments + positive integer that is a divisor of all arguments. If all arguments are zero, then the returned value is ``0``. ``gcd()`` without arguments returns ``0``.