Skip to content

Commit

Permalink
Merge branch 'master' into 4.0.0-dev-gh-237
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherRabotin committed Apr 17, 2024
2 parents 2b98298 + 8b43b98 commit a2df9ed
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 a2df9ed

Please sign in to comment.