diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2022-09-28 12:57:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-28 12:57:37 -0500 |
commit | 924a57d18bb98ec7cb3ceb35995b65f0d1cc4903 (patch) | |
tree | fd270bc8f101454c32da75a2b873b03482a2292d | |
parent | 3b8dca3d0588048c425488a5e39ceddf815d9138 (diff) | |
parent | f2c78678602e6296174a92e2b42f117bb4b5a2b3 (diff) | |
download | numpy-924a57d18bb98ec7cb3ceb35995b65f0d1cc4903.tar.gz |
Merge pull request #22344 from gdementen/patch-1
DOC: fixed minor typo in percentile docstring
-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 5b570accb..a0c94114a 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -3942,7 +3942,7 @@ def percentile(a, 8. 'median_unbiased' 9. 'normal_unbiased' - The first three methods are discontiuous. NumPy further defines the + The first three methods are discontinuous. NumPy further defines the following discontinuous variations of the default 'linear' (7.) option: * 'lower' |