diff options
author | Mike Toews <mwtoews@gmail.com> | 2018-06-16 18:18:19 +1200 |
---|---|---|
committer | Mike Toews <mwtoews@gmail.com> | 2018-06-16 18:18:19 +1200 |
commit | 83828f52b287fefb3d8753a21bd3441997a4d687 (patch) | |
tree | f62c5aa84a9db02f3b6460e66b56cd299e4a794f /numpy/lib/polynomial.py | |
parent | bf4a3e59b0cfb1e999845dc5228dfa1f54851b9f (diff) | |
download | numpy-83828f52b287fefb3d8753a21bd3441997a4d687.tar.gz |
HTTP -> HTTPS, and other linkrot fixes
Diffstat (limited to 'numpy/lib/polynomial.py')
-rw-r--r-- | numpy/lib/polynomial.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/polynomial.py b/numpy/lib/polynomial.py index 078608bbb..0e691f56e 100644 --- a/numpy/lib/polynomial.py +++ b/numpy/lib/polynomial.py @@ -494,9 +494,9 @@ def polyfit(x, y, deg, rcond=None, full=False, w=None, cov=False): References ---------- .. [1] Wikipedia, "Curve fitting", - http://en.wikipedia.org/wiki/Curve_fitting + https://en.wikipedia.org/wiki/Curve_fitting .. [2] Wikipedia, "Polynomial interpolation", - http://en.wikipedia.org/wiki/Polynomial_interpolation + https://en.wikipedia.org/wiki/Polynomial_interpolation Examples -------- |