Skip to content

Commit

Permalink
Fix repeated words in parse error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jix committed Mar 16, 2021
1 parent 5937bf9 commit 80c9168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flussab-cnf/src/token.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ where
input.reader.set_mark();
uint(input).map_err(|count| {
input.give_up(format!(
"{} {} exceeds the exceeds the supported maximum of {}",
"{} {} exceeds the supported maximum of {}",
what,
count,
T::max_value(),
Expand Down

0 comments on commit 80c9168

Please sign in to comment.