diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2022-09-18 02:09:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-18 02:09:39 (GMT) |
commit | 670007abb45b76115377de1f2ff398be27685007 (patch) | |
tree | 37910522a1cdf9fe3c635f71c4207e3eb4d364e4 | |
parent | aa671b48d62a00c5ab87fb102be15dd5eeac84dd (diff) | |
download | cpython-670007abb45b76115377de1f2ff398be27685007.zip cpython-670007abb45b76115377de1f2ff398be27685007.tar.gz cpython-670007abb45b76115377de1f2ff398be27685007.tar.bz2 |
Clarify that the expression is regular math notation, not Python. (#96903)
-rw-r--r-- | Doc/library/math.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/math.rst b/Doc/library/math.rst index e338959..96ada7d 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -45,8 +45,8 @@ Number-theoretic and representation functions to zero when ``k > n``. Also called the binomial coefficient because it is equivalent - to the coefficient of k-th term in polynomial expansion of the - expression ``(1 + x) ** n``. + to the coefficient of k-th term in polynomial expansion of + ``(1 + x)ⁿ``. Raises :exc:`TypeError` if either of the arguments are not integers. Raises :exc:`ValueError` if either of the arguments are negative. |