]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Clarify that the expression is regular math notation, not Python. (#96903)
authorRaymond Hettinger <rhettinger@users.noreply.github.com>
Sun, 18 Sep 2022 02:09:39 +0000 (21:09 -0500)
committerGitHub <noreply@github.com>
Sun, 18 Sep 2022 02:09:39 +0000 (21:09 -0500)
Doc/library/math.rst

index e338959ffbe4bf040b95a7850e6764031bf8f7ef..96ada7d81bd26950ac5017d8fdcedba6fe1fc477 100644 (file)
@@ -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.