summaryrefslogtreecommitdiff
path: root/numpy/linalg
diff options
context:
space:
mode:
authorTyler Reddy <tyler.je.reddy@gmail.com>2018-01-05 15:09:02 -0700
committerEric Wieser <wieser.eric@gmail.com>2018-01-05 14:09:02 -0800
commiteb2cfc1d91d34b24eae0b8fff0b6cd3a8496a37b (patch)
treeb9a43d2b8ffb49555e6f033db2bacee41624cabd /numpy/linalg
parent2bacec9ecb0fc665117a22027b73812509a99f56 (diff)
downloadnumpy-eb2cfc1d91d34b24eae0b8fff0b6cd3a8496a37b.tar.gz
DOC: typo fix in numpy.linalg.det docstring. (#10333)
Diffstat (limited to 'numpy/linalg')
-rw-r--r--numpy/linalg/linalg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/linalg.py b/numpy/linalg/linalg.py
index 8bc1b14d3..e9a68aea2 100644
--- a/numpy/linalg/linalg.py
+++ b/numpy/linalg/linalg.py
@@ -1835,7 +1835,7 @@ def det(a):
See Also
--------
- slogdet : Another way to representing the determinant, more suitable
+ slogdet : Another way to represent the determinant, more suitable
for large matrices where underflow/overflow may occur.
Notes