Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherRabotin committed Apr 9, 2024
1 parent c28151d commit 8b43b98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/efmt/format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ impl Format {
// Previous index of interest in the string
let mut prev_idx = 0;
let mut cur_item_idx = 0;
let mut cur_item = match self.items[cur_item_idx] {
let mut cur_item = match self.items[cur_item_idx] {
Some(item) => item,
None => return Err(Errors::ParseError(ParsingErrors::UnknownFormat)),
};
Expand Down

0 comments on commit 8b43b98

Please sign in to comment.