diff options
author | Nathaniel J. Smith <njs@pobox.com> | 2016-03-22 04:17:12 +0000 |
---|---|---|
committer | Nathaniel J. Smith <njs@pobox.com> | 2016-03-22 04:17:12 +0000 |
commit | ea58d27daf326f3f1adfb6c389fc21319e603779 (patch) | |
tree | 5912923c31e63ea034ceacaef1da85ec9e12d310 | |
parent | 11c8b4d48793e4b1227b2c5ae5c32d8178f285fc (diff) | |
parent | 4440841df39c415411b6cb4d1e48978cd9858464 (diff) | |
download | numpy-ea58d27daf326f3f1adfb6c389fc21319e603779.tar.gz |
Merge pull request #7446 from marshallward/master
DOC: ndarray typo fix
-rw-r--r-- | doc/source/reference/arrays.ndarray.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/arrays.ndarray.rst b/doc/source/reference/arrays.ndarray.rst index 201d01277..b68e40e3f 100644 --- a/doc/source/reference/arrays.ndarray.rst +++ b/doc/source/reference/arrays.ndarray.rst @@ -142,7 +142,7 @@ different. This can happen in two cases: index and the strides are never used. Any array with no elements may be considered C-style and Fortran-style contiguous. -Point 1. means that ``self``and ``self.squeeze()`` always have the same +Point 1. means that ``self`` and ``self.squeeze()`` always have the same contiguity and :term:`aligned` flags value. This also means that even a high dimensional array could be C-style and Fortran-style contiguous at the same time. |