diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2020-12-29 14:15:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-29 14:15:14 -0700 |
commit | 1b8b46b3f2f68f5be8e52e798eb91c2ac5952745 (patch) | |
tree | 74a8e5e3caca6405596c859384f5ca45e90f2fdd /numpy/lib/histograms.py | |
parent | 610433b03ef720c8bec7dbf7573a6abe4f913031 (diff) | |
parent | f36e940a4726abb38c4929259e8eaf00d68c3d18 (diff) | |
download | numpy-1b8b46b3f2f68f5be8e52e798eb91c2ac5952745.tar.gz |
Merge pull request #18091 from anntzer/docset
DOC: Avoid using "set of" when talking about an ordered list.
Diffstat (limited to 'numpy/lib/histograms.py')
-rw-r--r-- | numpy/lib/histograms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/histograms.py b/numpy/lib/histograms.py index 1a9b41ced..7af67a7ee 100644 --- a/numpy/lib/histograms.py +++ b/numpy/lib/histograms.py @@ -678,7 +678,7 @@ def _histogram_dispatcher( def histogram(a, bins=10, range=None, normed=None, weights=None, density=None): r""" - Compute the histogram of a set of data. + Compute the histogram of a dataset. Parameters ---------- |