Skip to content

Commit

Permalink
row_iter: Remove unnecessary &mut self
Browse files Browse the repository at this point in the history
  • Loading branch information
abhizer committed Oct 27, 2022
1 parent 4c6a9a1 commit 109510e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ impl Table {
}

/// Iterator over all rows
pub fn row_iter(&mut self) -> Iter<Row> {
pub fn row_iter(&self) -> Iter<Row> {
self.rows.iter()
}

Expand Down

0 comments on commit 109510e

Please sign in to comment.