summaryrefslogtreecommitdiff
path: root/doc/source/reference
diff options
context:
space:
mode:
authorKevin Moore <k.james.moore@gmail.com>2020-05-21 16:34:15 -0400
committerKevin Moore <k.james.moore@gmail.com>2020-05-21 16:40:26 -0400
commit6dfce7f498a9ee7f4cb396105270793ddc828e80 (patch)
treeb1bc1754ef41429f0c5be43233c2270f0935da49 /doc/source/reference
parent41e254f96e8d5bd558d2edbf8b198eb4143e8b74 (diff)
downloadnumpy-6dfce7f498a9ee7f4cb396105270793ddc828e80.tar.gz
DOC: Fix spelling typo - homogenous to homogeneous. (#16324)
Diffstat (limited to 'doc/source/reference')
-rw-r--r--doc/source/reference/arrays.interface.rst2
-rw-r--r--doc/source/reference/arrays.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/reference/arrays.interface.rst b/doc/source/reference/arrays.interface.rst
index f36a083aa..4e95535c0 100644
--- a/doc/source/reference/arrays.interface.rst
+++ b/doc/source/reference/arrays.interface.rst
@@ -71,7 +71,7 @@ This approach to the interface consists of the object having an
**typestr** (required)
- A string providing the basic type of the homogenous array The
+ A string providing the basic type of the homogeneous array The
basic string format consists of 3 parts: a character describing
the byteorder of the data (``<``: little-endian, ``>``:
big-endian, ``|``: not-relevant), a character code giving the
diff --git a/doc/source/reference/arrays.rst b/doc/source/reference/arrays.rst
index faa91a389..497dd9cd6 100644
--- a/doc/source/reference/arrays.rst
+++ b/doc/source/reference/arrays.rst
@@ -11,7 +11,7 @@ NumPy provides an N-dimensional array type, the :ref:`ndarray
type. The items can be :ref:`indexed <arrays.indexing>` using for
example N integers.
-All ndarrays are :term:`homogenous`: every item takes up the same size
+All ndarrays are :term:`homogeneous`: every item takes up the same size
block of memory, and all blocks are interpreted in exactly the same
way. How each item in the array is to be interpreted is specified by a
separate :ref:`data-type object <arrays.dtypes>`, one of which is associated