changeset 32065:c9e496db7951

Correct typo in cset 3b9305e62bb7. * mk-sparse-tst.sh: Correct spelling of "instead".
author A.R. Burgers <arburgers@gmail.com>
date Fri, 28 Apr 2023 12:00:37 -0700
parents 5f5d8edbeb4f
children b16940405077
files test/mk-sparse-tst.sh
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/test/mk-sparse-tst.sh	Thu Apr 27 13:26:53 2023 -0400
+++ b/test/mk-sparse-tst.sh	Fri Apr 28 12:00:37 2023 -0700
@@ -655,7 +655,7 @@
 %!testif HAVE_UMFPACK
 %! ## Yes, we want to test lu with fewer than 4 output arguments
 %! ## and sparse input while also avoiding the warning.  So use
-%! ## warning ("off", ...) insetead of additional outputs.
+%! ## warning ("off", ...) instead of additional outputs.
 %! warning ("off", "Octave:lu:sparse_input", "local");
 %! [l,u] = lu (sparse ([1,1;1,1]));
 %! assert (l*u, [1,1;1,1], 10*eps);
@@ -663,7 +663,7 @@
 %!testif HAVE_UMFPACK
 %! ## Yes, we want to test lu with fewer than 4 output arguments
 %! ## and sparse input while also avoiding the warning.  So use
-%! ## warning ("off", ...) insetead of additional outputs.
+%! ## warning ("off", ...) instead of additional outputs.
 %! warning ("off", "Octave:lu:sparse_input", "local");
 %! [l,u] = lu (sparse ([1,1;1,1+i]));
 %! assert (l, sparse ([1,2,2],[1,1,2],1), 10*eps);
@@ -672,7 +672,7 @@
 %!testif HAVE_UMFPACK   # permuted LU
 %! ## Yes, we want to test lu with fewer than 4 output arguments
 %! ## and sparse input while also avoiding the warning.  So use
-%! ## warning ("off", ...) insetead of additional outputs.
+%! ## warning ("off", ...) instead of additional outputs.
 %! warning ("off", "Octave:lu:sparse_input", "local");
 %! [L,U] = lu (bs);
 %! assert (L*U, bs, 1e-10);
@@ -680,7 +680,7 @@
 %!testif HAVE_UMFPACK   # simple LU + row permutations
 %! ## Yes, we want to test lu with fewer than 4 output arguments
 %! ## and sparse input while also avoiding the warning.  So use
-%! ## warning ("off", ...) insetead of additional outputs.
+%! ## warning ("off", ...) instead of additional outputs.
 %! warning ("off", "Octave:lu:sparse_input", "local");
 %! [L,U,P] = lu (bs);
 %! assert (P'*L*U, bs, 1e-10);
@@ -784,7 +784,7 @@
 %!testif HAVE_UMFPACK   # permuted LU
 %! ## Yes, we want to test lu with fewer than 4 output arguments
 %! ## and sparse input while also avoiding the warning.  So use
-%! ## warning ("off", ...) insetead of additional outputs.
+%! ## warning ("off", ...) instead of additional outputs.
 %! warning ("off", "Octave:lu:sparse_input", "local");
 %! [L,U] = lu (bs);
 %! assert (L*U, bs, 1e-10);
@@ -792,7 +792,7 @@
 %!testif HAVE_UMFPACK   # simple LU + row permutations
 %! ## Yes, we want to test lu with fewer than 4 output arguments
 %! ## and sparse input while also avoiding the warning.  So use
-%! ## warning ("off", ...) insetead of additional outputs.
+%! ## warning ("off", ...) instead of additional outputs.
 %! warning ("off", "Octave:lu:sparse_input", "local");
 %! [L,U,P] = lu (bs);
 %! assert (P'*L*U, bs, 1e-10);