diff options
author | Matthew Brett <matthew.brett@gmail.com> | 2010-03-11 23:32:41 +0000 |
---|---|---|
committer | Matthew Brett <matthew.brett@gmail.com> | 2010-03-11 23:32:41 +0000 |
commit | 66cbc792058bb9881b6c64f98de53a80df09f45a (patch) | |
tree | 4c34db390e345c392d901fb5446ed4b9c47571eb /numpy/lib/twodim_base.py | |
parent | 4367c6fc59ac362474b59b276b508ac7f922c1d5 (diff) | |
download | numpy-66cbc792058bb9881b6c64f98de53a80df09f45a.tar.gz |
DOC - fix doc error
Diffstat (limited to 'numpy/lib/twodim_base.py')
-rw-r--r-- | numpy/lib/twodim_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/twodim_base.py b/numpy/lib/twodim_base.py index 40a5aec33..0a5f83ec4 100644 --- a/numpy/lib/twodim_base.py +++ b/numpy/lib/twodim_base.py @@ -851,7 +851,7 @@ def triu_indices(n,k=0): def triu_indices_from(arr,k=0): """ - Return the indices for the lower-triangle of an (n, n) array. + Return the indices for the upper-triangle of an (n, n) array. See `triu_indices` for full details. |