chore: address Rust 1.67 clippy lints (#465)

This commit is contained in:
Sanchith Hegde
2023-01-27 12:29:57 +05:30
committed by GitHub
parent 351087fc7f
commit b5720f1e38
33 changed files with 107 additions and 123 deletions

View File

@ -106,7 +106,7 @@ impl fmt::Display for RecordType {
Self::ExitSpan => "END",
Self::Event => "EVENT",
};
write!(f, "{}", repr)
write!(f, "{repr}")
}
}