Fix grammar (GH-13801)

This commit is contained in:
Raymond Hettinger 2019-06-04 03:40:23 -07:00 committed by GitHub
parent 8bcf2629a2
commit 8f4bbb5d62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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