Skip to content

Commit 5feab83

Browse files
committed
cleanup
1 parent c1b3677 commit 5feab83

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/linalg/basic/matrix.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ impl<'a, T: Debug + Display + Copy + Sized> DenseMatrixView<'a, T> {
107107

108108
if is_valid_matrix_window(mrows, mcols, &vrows, &vcols) {
109109
Err(Failed::input(
110-
"The specified window is outside of the matrix range"
110+
"The specified window is outside of the matrix range",
111111
))
112112
} else {
113113
let (start, end, stride) =
@@ -160,7 +160,7 @@ impl<'a, T: Debug + Display + Copy + Sized> DenseMatrixMutView<'a, T> {
160160
let (mrows, mcols) = m.shape();
161161
if is_valid_matrix_window(mrows, mcols, &vrows, &vcols) {
162162
Err(Failed::input(
163-
"The specified window is outside of the matrix range"
163+
"The specified window is outside of the matrix range",
164164
))
165165
} else {
166166
let (start, end, stride) =
@@ -272,7 +272,7 @@ impl<T: Debug + Display + Copy + Sized> DenseMatrix<T> {
272272

273273
if values.is_empty() || values[0].is_empty() {
274274
Err(Failed::input(
275-
"The 2d vec provided is empty; cannot instantiate the matrix"
275+
"The 2d vec provided is empty; cannot instantiate the matrix",
276276
))
277277
} else {
278278
let nrows = values.len();

0 commit comments

Comments
 (0)