Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
cpmech committed Sep 20, 2023
1 parent 0636d0f commit ea6a1dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion russell_sparse/src/csr_matrix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<i32>,

/// Defines the column indices array with size = nnz (number of non-zeros)
Expand Down

0 comments on commit ea6a1dc

Please sign in to comment.