diff options
author | Unknown <kunda@scribus.net> | 2017-12-12 19:08:43 -0500 |
---|---|---|
committer | Unknown <kunda@scribus.net> | 2017-12-12 19:09:07 -0500 |
commit | de100beb4b53833f817d4ba9c6d940e4cff96d43 (patch) | |
tree | eba76bff8ae029b4fb805bd6cd4bff4337922f1d /numpy/doc/byteswapping.py | |
parent | 356b481bcf8783a4ecca6aaa7d7712e347c16101 (diff) | |
download | numpy-de100beb4b53833f817d4ba9c6d940e4cff96d43.tar.gz |
DOC: fix minor typos
Diffstat (limited to 'numpy/doc/byteswapping.py')
-rw-r--r-- | numpy/doc/byteswapping.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/doc/byteswapping.py b/numpy/doc/byteswapping.py index d67e2cff0..f9491ed43 100644 --- a/numpy/doc/byteswapping.py +++ b/numpy/doc/byteswapping.py @@ -85,11 +85,11 @@ underlying memory it is looking at: The common situations in which you need to change byte ordering are: -#. Your data and dtype endianess don't match, and you want to change +#. Your data and dtype endianness don't match, and you want to change the dtype so that it matches the data. -#. Your data and dtype endianess don't match, and you want to swap the +#. Your data and dtype endianness don't match, and you want to swap the data so that they match the dtype -#. Your data and dtype endianess match, but you want the data swapped +#. Your data and dtype endianness match, but you want the data swapped and the dtype to reflect this Data and dtype endianness don't match, change dtype to match data |