summaryrefslogtreecommitdiff
path: root/numpy/doc/byteswapping.py
diff options
context:
space:
mode:
authorDongjoon Hyun <dongjoon@apache.org>2016-02-21 11:33:41 -0800
committerDongjoon Hyun <dongjoon@apache.org>2016-02-25 11:37:32 -0800
commit2556b9ff1ae621e311053bd5f2b34edb86a8cb68 (patch)
treeee25cd0a9f3d40a4292b342ce664f1c417d0deb2 /numpy/doc/byteswapping.py
parent89d95a0660ffd5890916edb78a6d4a9ccb5b3ad0 (diff)
downloadnumpy-2556b9ff1ae621e311053bd5f2b34edb86a8cb68.tar.gz
DOC: Fix more typos in docs and comments.
Diffstat (limited to 'numpy/doc/byteswapping.py')
-rw-r--r--numpy/doc/byteswapping.py2
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.