We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b01721 commit 6201d87Copy full SHA for 6201d87
src/error.rs
@@ -30,7 +30,7 @@ impl Display for ParseIntError {
30
match &self.kind {
31
ParseIntErrorKind::Overflow => f.write_str("number too large to fit in target type"),
32
ParseIntErrorKind::Underflow => f.write_str("number too small to fit in target type"),
33
- ParseIntErrorKind::Unknown(e) => write!(f, "{}", e),
+ ParseIntErrorKind::Unknown(e) => write!(f, "{e}"),
34
}
35
36
0 commit comments