1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-03 03:42:26 +01:00

Use deref coercion to simplify some argument passing

This commit is contained in:
Marcin Puc
2021-09-10 21:58:46 +02:00
committed by Martin Nordholts
parent 7956485e37
commit 4baa346aae
3 changed files with 3 additions and 3 deletions

View File

@@ -50,7 +50,7 @@ impl InputDescription {
}
pub fn title(&self) -> &String {
match self.title.as_ref() {
match &self.title {
Some(title) => title,
None => &self.name,
}