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/matrixlib/defmatrix.py | |
parent | 89d95a0660ffd5890916edb78a6d4a9ccb5b3ad0 (diff) | |
download | numpy-2556b9ff1ae621e311053bd5f2b34edb86a8cb68.tar.gz |
DOC: Fix more typos in docs and comments.
Diffstat (limited to 'numpy/matrixlib/defmatrix.py')
-rw-r--r-- | numpy/matrixlib/defmatrix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/matrixlib/defmatrix.py b/numpy/matrixlib/defmatrix.py index 1a29fb67b..6c7640cb8 100644 --- a/numpy/matrixlib/defmatrix.py +++ b/numpy/matrixlib/defmatrix.py @@ -156,7 +156,7 @@ def matrix_power(M, n): >>> q = np.zeros((4, 4)) >>> q[0:2, 0:2] = -i >>> q[2:4, 2:4] = i - >>> q # one of the three quarternion units not equal to 1 + >>> q # one of the three quaternion units not equal to 1 array([[ 0., -1., 0., 0.], [ 1., 0., 0., 0.], [ 0., 0., 0., 1.], |