summaryrefslogtreecommitdiffstats
path: root/Doc/library/math.rst
diff options
context:
space:
mode:
authorGaurav Kamath <st0le@users.noreply.github.com>2020-10-11 18:13:43 (GMT)
committerGitHub <noreply@github.com>2020-10-11 18:13:43 (GMT)
commit8197a93208fea3b56e012272b6cf3f0c2c582d4a (patch)
tree78dab0bdf78dfb265a2c92065594baf2e38568e8 /Doc/library/math.rst
parent8287aadb75f6bd0154996424819334cd3839707c (diff)
downloadcpython-8197a93208fea3b56e012272b6cf3f0c2c582d4a.zip
cpython-8197a93208fea3b56e012272b6cf3f0c2c582d4a.tar.gz
cpython-8197a93208fea3b56e012272b6cf3f0c2c582d4a.tar.bz2
Fix typo (GH-22582)
/af/of/s Automerge-Triggered-By: @Mariatta
Diffstat (limited to 'Doc/library/math.rst')
-rw-r--r--Doc/library/math.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/math.rst b/Doc/library/math.rst
index bbf6464..145bac4 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``.