diff options
author | luzpaz <luzpaz@users.noreply.github.com> | 2018-05-01 04:28:18 +0000 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2018-04-30 21:28:18 -0700 |
commit | 820765d762513510a8e46f108e8bc8b366127f8f (patch) | |
tree | e03571b42ed4cf2c929c64ca2ba9803e26839b65 /numpy/lib/tests/test_histograms.py | |
parent | 4cfba64b4abcd0875fe68618c2a18d37cd173eec (diff) | |
download | numpy-820765d762513510a8e46f108e8bc8b366127f8f.tar.gz |
MAINT: Misc. typos (#11005)
User- and non-user-facing typos.
Some source typos fixes as well.
Found via `codespell`.
Diffstat (limited to 'numpy/lib/tests/test_histograms.py')
-rw-r--r-- | numpy/lib/tests/test_histograms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_histograms.py b/numpy/lib/tests/test_histograms.py index 06daacbdc..597b5b376 100644 --- a/numpy/lib/tests/test_histograms.py +++ b/numpy/lib/tests/test_histograms.py @@ -253,7 +253,7 @@ class TestHistogram(object): one_nan = np.array([0, 1, np.nan]) all_nan = np.array([np.nan, np.nan]) - # the internal commparisons with NaN give warnings + # the internal comparisons with NaN give warnings sup = suppress_warnings() sup.filter(RuntimeWarning) with sup: |