Fix various lints

This commit is contained in:
Jack Grigg 2020-05-22 18:52:35 +12:00
parent cbe8c5de67
commit 027847f543
1 changed files with 1 additions and 1 deletions

View File

@ -353,7 +353,7 @@ impl fmt::Display for SynthesisError {
write!(f, "I/O error: ")?; write!(f, "I/O error: ")?;
e.fmt(f) e.fmt(f)
} else { } else {
write!(f, "{}", self.description()) write!(f, "{}", self)
} }
} }
} }