summaryrefslogtreecommitdiff
path: root/numpy/polynomial/hermite.py
diff options
context:
space:
mode:
authorMatthias Bussonnier <bussonniermatthias@gmail.com>2021-10-31 21:57:11 -0700
committerGitHub <noreply@github.com>2021-10-31 21:57:11 -0700
commit927feff8788f27f29e76e803f187a4c041098ced (patch)
treefdb03b86ed064841227f28e1c6e823d2f3cd2547 /numpy/polynomial/hermite.py
parentc276dfb6fb5f83b4787c376539720f59b5770743 (diff)
downloadnumpy-927feff8788f27f29e76e803f187a4c041098ced.tar.gz
DOC: Fix math block in hermmulx, lagmulx (#20261)
The math expression needs to be indented, Otherwise it is seen as being outside the directive and not rendered.
Diffstat (limited to 'numpy/polynomial/hermite.py')
-rw-r--r--numpy/polynomial/hermite.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/polynomial/hermite.py b/numpy/polynomial/hermite.py
index 9800063f0..9b0735a9a 100644
--- a/numpy/polynomial/hermite.py
+++ b/numpy/polynomial/hermite.py
@@ -419,7 +419,7 @@ def hermmulx(c):
.. math::
- xP_i(x) = (P_{i + 1}(x)/2 + i*P_{i - 1}(x))
+ xP_i(x) = (P_{i + 1}(x)/2 + i*P_{i - 1}(x))
Examples
--------