diff options
author | Matthias Bussonnier <bussonniermatthias@gmail.com> | 2020-12-28 22:15:34 -0800 |
---|---|---|
committer | Matthias Bussonnier <bussonniermatthias@gmail.com> | 2020-12-28 22:15:34 -0800 |
commit | fcaaf276ee6dc7149a9ef442111748970fa46925 (patch) | |
tree | b6ead88ce1ea944933a0d42f2505ef32fc17a707 /numpy/polynomial/hermite.py | |
parent | a138ec541852130bb407db2ef389206f63703c22 (diff) | |
download | numpy-fcaaf276ee6dc7149a9ef442111748970fa46925.tar.gz |
DOC: Update reference to verbatim in a few location.
Single backticks default role is reference, while here it seem to be for
verbatim. Fix it in a couple of places.
Diffstat (limited to 'numpy/polynomial/hermite.py')
-rw-r--r-- | numpy/polynomial/hermite.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/polynomial/hermite.py b/numpy/polynomial/hermite.py index c679c5298..eef5c25b2 100644 --- a/numpy/polynomial/hermite.py +++ b/numpy/polynomial/hermite.py @@ -1311,7 +1311,7 @@ def hermfit(x, y, deg, rcond=None, full=False, w=None): information from the singular value decomposition is also returned. w : array_like, shape (`M`,), optional Weights. If not None, the contribution of each point - ``(x[i],y[i])`` to the fit is weighted by `w[i]`. Ideally the + ``(x[i],y[i])`` to the fit is weighted by ``w[i]``. Ideally the weights are chosen so that the errors of the products ``w[i]*y[i]`` all have the same variance. The default value is None. |