@@ -107,7 +107,7 @@ impl<'a, T: Debug + Display + Copy + Sized> DenseMatrixView<'a, T> {
107
107
108
108
if is_valid_matrix_window ( mrows, mcols, & vrows, & vcols) {
109
109
Err ( Failed :: input (
110
- "The specified window is outside of the matrix range"
110
+ "The specified window is outside of the matrix range" ,
111
111
) )
112
112
} else {
113
113
let ( start, end, stride) =
@@ -160,7 +160,7 @@ impl<'a, T: Debug + Display + Copy + Sized> DenseMatrixMutView<'a, T> {
160
160
let ( mrows, mcols) = m. shape ( ) ;
161
161
if is_valid_matrix_window ( mrows, mcols, & vrows, & vcols) {
162
162
Err ( Failed :: input (
163
- "The specified window is outside of the matrix range"
163
+ "The specified window is outside of the matrix range" ,
164
164
) )
165
165
} else {
166
166
let ( start, end, stride) =
@@ -272,7 +272,7 @@ impl<T: Debug + Display + Copy + Sized> DenseMatrix<T> {
272
272
273
273
if values. is_empty ( ) || values[ 0 ] . is_empty ( ) {
274
274
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" ,
276
276
) )
277
277
} else {
278
278
let nrows = values. len ( ) ;
0 commit comments