diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-11-13 12:04:11 -0800 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-11-13 12:04:11 -0800 |
commit | 217402ee7c8b7d4b08a4384d911d7ee0254fd90f (patch) | |
tree | f32f04ff063586235cdbcb1ce664dca81a38b273 /numpy/lib | |
parent | e4d8ad84bf098a4c4dcfb21f3b7fbb1d228b2e34 (diff) | |
parent | 1a1a757b9165094e25d90985affdb8ddd16551b4 (diff) | |
download | numpy-217402ee7c8b7d4b08a4384d911d7ee0254fd90f.tar.gz |
Merge pull request #4046 from chatcannon/speling
Spelling & notation corrections
Diffstat (limited to 'numpy/lib')
-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 fe3066377..b3f7aece2 100644 --- a/numpy/lib/twodim_base.py +++ b/numpy/lib/twodim_base.py @@ -256,7 +256,7 @@ def diag(v, k=0): diagflat : Create a 2-D array with the flattened input as a diagonal. trace : Sum along diagonals. triu : Upper triangle of an array. - tril : Lower triange of an array. + tril : Lower triangle of an array. Examples -------- |