Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

Commit

Permalink
Update lib.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
ASuciuX committed Jan 26, 2024
1 parent 4b6638a commit 118ecbb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions stx-genesis/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ struct LinePairReader {
impl Iterator for LinePairReader {
type Item = [String; 2];
fn next(&mut self) -> Option<Self::Item> {
// comment to rerun this with mutants
if let (Some(l1), Some(l2)) = (self.val.next(), self.val.next()) {
Some([l1.unwrap(), l2.unwrap()])
} else {
Expand Down

0 comments on commit 118ecbb

Please sign in to comment.