diff options
author | Dongjoon Hyun <dongjoon@apache.org> | 2016-02-21 11:33:41 -0800 |
---|---|---|
committer | Dongjoon Hyun <dongjoon@apache.org> | 2016-02-25 11:37:32 -0800 |
commit | 2556b9ff1ae621e311053bd5f2b34edb86a8cb68 (patch) | |
tree | ee25cd0a9f3d40a4292b342ce664f1c417d0deb2 /numpy/doc/byteswapping.py | |
parent | 89d95a0660ffd5890916edb78a6d4a9ccb5b3ad0 (diff) | |
download | numpy-2556b9ff1ae621e311053bd5f2b34edb86a8cb68.tar.gz |
DOC: Fix more typos in docs and comments.
Diffstat (limited to 'numpy/doc/byteswapping.py')
-rw-r--r-- | numpy/doc/byteswapping.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/doc/byteswapping.py b/numpy/doc/byteswapping.py index 22eb71e6d..d67e2cff0 100644 --- a/numpy/doc/byteswapping.py +++ b/numpy/doc/byteswapping.py @@ -78,7 +78,7 @@ affect the relationship between the byte ordering of the array and the underlying memory it is looking at: * Change the byte-ordering information in the array dtype so that it - interprets the undelying data as being in a different byte order. + interprets the underlying data as being in a different byte order. This is the role of ``arr.newbyteorder()`` * Change the byte-ordering of the underlying data, leaving the dtype interpretation as it was. This is what ``arr.byteswap()`` does. |