diff options
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/tests/test_multiarray.py | 2 | ||||
-rw-r--r-- | numpy/doc/glossary.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/tests/test_multiarray.py b/numpy/core/tests/test_multiarray.py index fc2ab94e6..2edcc680b 100644 --- a/numpy/core/tests/test_multiarray.py +++ b/numpy/core/tests/test_multiarray.py @@ -929,7 +929,7 @@ class TestCreation: d = np.empty(i, dtype='U') str(d) - def test_sequence_non_homogenous(self): + def test_sequence_non_homogeneous(self): assert_equal(np.array([4, 2**80]).dtype, object) assert_equal(np.array([4, 2**80, 4]).dtype, object) assert_equal(np.array([2**80, 4]).dtype, object) diff --git a/numpy/doc/glossary.py b/numpy/doc/glossary.py index 16a3b9241..31130559b 100644 --- a/numpy/doc/glossary.py +++ b/numpy/doc/glossary.py @@ -169,7 +169,7 @@ Glossary Collapsed to a one-dimensional array. See `numpy.ndarray.flatten` for details. - homogenous + homogeneous Describes a block of memory comprised of blocks, each block comprised of items and of the same size, and blocks are interpreted in exactly the same way. In the simplest case each block contains a single item, for |