Fix last few warnings manually

This commit is contained in:
Amos Wenger
2022-07-20 15:05:02 +02:00
parent 816f7fe12a
commit 8318035726
4 changed files with 7 additions and 7 deletions

View File

@@ -72,7 +72,7 @@ impl LspError {
}
impl fmt::Display for LspError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Language Server request failed with {}. ({})", self.code, self.message)
}
}