summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2019-06-04 10:40:23 (GMT)
committerGitHub <noreply@github.com>2019-06-04 10:40:23 (GMT)
commit8f4bbb5d627e07a5508099e84796cecaeb9e32ab (patch)
tree4b25f24a2b671fe93959cd7735c93971d0f044c0
parent8bcf2629a2e27267edba98fd3b5ed274b25aeb2d (diff)
downloadcpython-8f4bbb5d627e07a5508099e84796cecaeb9e32ab.zip
cpython-8f4bbb5d627e07a5508099e84796cecaeb9e32ab.tar.gz
cpython-8f4bbb5d627e07a5508099e84796cecaeb9e32ab.tar.bz2
Fix grammar (GH-13801)
-rw-r--r--Doc/library/math.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/math.rst b/Doc/library/math.rst
index 4a15789..28ed5d21 100644
--- a/Doc/library/math.rst
+++ b/Doc/library/math.rst
@@ -48,7 +48,7 @@ Number-theoretic and representation functions
to the coefficient of k-th term in polynomial expansion of the
expression ``(1 + x) ** n``.
- Raises :exc:`TypeError` if either of the arguments not integers.
+ Raises :exc:`TypeError` if either of the arguments are not integers.
Raises :exc:`ValueError` if either of the arguments are negative.
.. versionadded:: 3.8
@@ -218,7 +218,7 @@ Number-theoretic and representation functions
Evaluates to ``n! / (n - k)!`` when ``k <= n`` and evaluates
to zero when ``k > n``.
- Raises :exc:`TypeError` if either of the arguments not integers.
+ Raises :exc:`TypeError` if either of the arguments are not integers.
Raises :exc:`ValueError` if either of the arguments are negative.
.. versionadded:: 3.8