Fix misspelling (same as !131)

This commit is contained in:
conrad
2023-11-29 12:23:27 +10:00
parent 7a76074adb
commit addfc9f74d
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -7830,7 +7830,7 @@ Mat<eT>::save(const csv_name& spec, const file_type type) const
if(spec.header_ro.n_elem != save_n_cols)
{
arma_debug_warn_level(1, "Mat::save(): size mistmach between header and matrix");
arma_debug_warn_level(1, "Mat::save(): size mismatch between header and matrix");
return false;
}
}
@@ -8114,7 +8114,7 @@ Mat<eT>::load(const csv_name& spec, const file_type type)
if(with_header && (spec.header_rw.n_elem != load_n_cols))
{
arma_debug_warn_level(3, "Mat::load(): size mistmach between header and matrix");
arma_debug_warn_level(3, "Mat::load(): size mismatch between header and matrix");
}
}
+2 -2
View File
@@ -4609,7 +4609,7 @@ SpMat<eT>::save(const csv_name& spec, const file_type type) const
if(spec.header_ro.n_elem != save_n_cols)
{
arma_debug_warn_level(1, "SpMat::save(): size mistmach between header and matrix");
arma_debug_warn_level(1, "SpMat::save(): size mismatch between header and matrix");
return false;
}
}
@@ -4808,7 +4808,7 @@ SpMat<eT>::load(const csv_name& spec, const file_type type)
if(with_header && (spec.header_rw.n_elem != load_n_cols))
{
arma_debug_warn_level(3, "SpMat::load(): size mistmach between header and matrix");
arma_debug_warn_level(3, "SpMat::load(): size mismatch between header and matrix");
}
}