Skip to content

Commit

Permalink
Merge pull request #95 from abhizer/main
Browse files Browse the repository at this point in the history
row_iter: Remove unnecessary &mut self
  • Loading branch information
Nukesor committed Oct 27, 2022
2 parents 4c6a9a1 + 109510e commit 3a80c80
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 3a80c80

Please sign in to comment.