diff options
| author | Brian Wignall <brianwignall@gmail.com> | 2020-01-14 07:27:33 -0500 |
|---|---|---|
| committer | Brian Wignall <brianwignall@gmail.com> | 2020-01-14 07:27:33 -0500 |
| commit | b485da191ec08597835292e45f3ee52f3b1e23e5 (patch) | |
| tree | 49d81469ad7574f206662cd586608d42e182f95f /numpy/linalg | |
| parent | 266c588b393ea0d3b89d583e014e9befe654bed2 (diff) | |
| download | numpy-b485da191ec08597835292e45f3ee52f3b1e23e5.tar.gz | |
DOC: fix typos
Diffstat (limited to 'numpy/linalg')
| -rw-r--r-- | numpy/linalg/linalg.py | 2 | ||||
| -rw-r--r-- | numpy/linalg/umath_linalg.c.src | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/numpy/linalg/linalg.py b/numpy/linalg/linalg.py index 15615e1a3..7c0b6facf 100644 --- a/numpy/linalg/linalg.py +++ b/numpy/linalg/linalg.py @@ -772,7 +772,7 @@ def cholesky(a): return wrap(r.astype(result_t, copy=False)) -# QR decompostion +# QR decomposition def _qr_dispatcher(a, mode=None): return (a,) diff --git a/numpy/linalg/umath_linalg.c.src b/numpy/linalg/umath_linalg.c.src index 00ff6b7a8..fa1396545 100644 --- a/numpy/linalg/umath_linalg.c.src +++ b/numpy/linalg/umath_linalg.c.src @@ -1841,7 +1841,7 @@ typedef struct geev_params_struct { void *WR; /* RWORK in complex versions, REAL W buffer for (sd)geev*/ void *WI; void *VLR; /* REAL VL buffers for _geev where _ is s, d */ - void *VRR; /* REAL VR buffers for _geev hwere _ is s, d */ + void *VRR; /* REAL VR buffers for _geev where _ is s, d */ void *WORK; void *W; /* final w */ void *VL; /* final vl */ |
