summaryrefslogtreecommitdiff
path: root/numpy/core/tests/test_multiarray.py
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2018-02-12 18:50:27 -0500
committerluz.paz <luzpaz@users.noreply.github.com>2018-02-12 18:50:27 -0500
commit4740f15df91a779ccf2e923367a792ddcee5816e (patch)
tree23e85169fc2ff519d190cbee3aaa52617fe007a9 /numpy/core/tests/test_multiarray.py
parent9db6f384962e8ed75540f22f2e039ed6af1a4cbe (diff)
downloadpython-numpy-4740f15df91a779ccf2e923367a792ddcee5816e.tar.gz
python-numpy-4740f15df91a779ccf2e923367a792ddcee5816e.tar.bz2
python-numpy-4740f15df91a779ccf2e923367a792ddcee5816e.zip
Misc. typos
Found via `codespell -q 3 -I ../numpy-whitelist.txt`
Diffstat (limited to 'numpy/core/tests/test_multiarray.py')
-rw-r--r--numpy/core/tests/test_multiarray.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/tests/test_multiarray.py b/numpy/core/tests/test_multiarray.py
index d65bb17e6..e1fcf947e 100644
--- a/numpy/core/tests/test_multiarray.py
+++ b/numpy/core/tests/test_multiarray.py
@@ -7212,7 +7212,7 @@ class TestWritebackIfCopy(TestCase):
arr_wb[:] = -100
npy_resolve(arr_wb)
assert_equal(arr, -100)
- # after resolve, the two arrays no longer reference eachother
+ # after resolve, the two arrays no longer reference each other
assert_(not arr_wb.ctypes.data == 0)
arr_wb[:] = 100
assert_equal(arr, -100)