fix clippy warnings

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2024-04-19 14:30:08 -07:00
parent a71e8206fb
commit 99ac578ebd
11 changed files with 88 additions and 89 deletions

View File

@@ -18,6 +18,6 @@ impl NoteCache {
}
pub fn reltime_str(&mut self) -> &str {
return &self.reltime.get();
return self.reltime.get();
}
}