diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2018-04-20 20:47:28 -0700 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2018-04-21 11:13:52 -0700 |
commit | b68bb43840368549c12801b5142a5171bb7c0139 (patch) | |
tree | 33409979cbba185fb57833ea01639a87a2158659 | |
parent | 12114c720566e53e42fdc3bec3fedefdc628383d (diff) | |
download | numpy-b68bb43840368549c12801b5142a5171bb7c0139.tar.gz |
MAINT: Fix typo
-rw-r--r-- | numpy/linalg/umath_linalg.c.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/umath_linalg.c.src b/numpy/linalg/umath_linalg.c.src index 1b26c9fd5..71dfa556d 100644 --- a/numpy/linalg/umath_linalg.c.src +++ b/numpy/linalg/umath_linalg.c.src @@ -3306,7 +3306,7 @@ static void for (i = 0; i < nrhs; i++) { @ftyp@ *vector = components + i*m; /* Numpy and fortran floating types are the same size, - * so this case is safe */ + * so this cast is safe */ @basetyp@ abs2 = @TYPE@_abs2((@typ@ *)vector, excess); memcpy( resid + i*r_out.column_strides, |