diff --git a/russell_sparse/src/csr_matrix.rs b/russell_sparse/src/csr_matrix.rs index 85b51313..84478e3c 100644 --- a/russell_sparse/src/csr_matrix.rs +++ b/russell_sparse/src/csr_matrix.rs @@ -13,7 +13,7 @@ pub struct CsrMatrix { /// Holds the number of columns (must fit i32) pub ncol: usize, - /// Defines the row pointers array with size = n_row + 1 + /// Defines the row pointers array with size = nrow + 1 pub row_pointers: Vec, /// Defines the column indices array with size = nnz (number of non-zeros)