summaryrefslogtreecommitdiff
path: root/numpy/polynomial/polynomial.py
diff options
context:
space:
mode:
authorMichael Seifert <michaelseifert04@yahoo.de>2017-09-12 18:30:25 +0200
committerMichael Seifert <michaelseifert04@yahoo.de>2017-09-12 18:30:25 +0200
commit15a3174d02b319e303698c377ffcc9fbc0d4c231 (patch)
tree223635404a4fd942de3e6996f1df817803105580 /numpy/polynomial/polynomial.py
parent5d8bfdd05cff9895fcbf7bb3e30b229979db0a4a (diff)
downloadnumpy-15a3174d02b319e303698c377ffcc9fbc0d4c231.tar.gz
DOC: Fix inline "math" directives [skip ci]
Diffstat (limited to 'numpy/polynomial/polynomial.py')
-rw-r--r--numpy/polynomial/polynomial.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/polynomial/polynomial.py b/numpy/polynomial/polynomial.py
index 1528de342..1be775f6a 100644
--- a/numpy/polynomial/polynomial.py
+++ b/numpy/polynomial/polynomial.py
@@ -619,7 +619,7 @@ def polyint(c, m=1, k=[], lbnd=0, scl=1, axis=0):
Note that the result of each integration is *multiplied* by `scl`. Why
is this important to note? Say one is making a linear change of
variable :math:`u = ax + b` in an integral relative to `x`. Then
- .. math::`dx = du/a`, so one will need to set `scl` equal to
+ :math:`dx = du/a`, so one will need to set `scl` equal to
:math:`1/a` - perhaps not what one would have first thought.
Examples