diff options
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index db0c5ffbb..01c44eec5 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -1085,7 +1085,7 @@ def interp(x, xp, fp, left=None, right=None): Value to return for `x < xp[0]`, default is `fp[0]`. right : float, optional - Value to return for `x > xp[-1]`, defaults is `fp[-1]`. + Value to return for `x > xp[-1]`, default is `fp[-1]`. Returns ------- |