Skip to content

Commit

Permalink
Fix clippy errors on master (#81)
Browse files Browse the repository at this point in the history
Fixes failing builds on master
  • Loading branch information
liamsi authored Nov 28, 2019
1 parent 90be161 commit d745b71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tendermint/src/time.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ impl Time {
}

impl fmt::Display for Time {
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
write!(f, "{}", self.to_rfc3339())
}
}
Expand Down

0 comments on commit d745b71

Please sign in to comment.