mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-26 13:56:27 +00:00
Add all-important dots
This commit is contained in:
parent
64c1600cd4
commit
0edf761d22
@ -168,9 +168,9 @@ impl fmt::Display for Misfire {
|
||||
match *self {
|
||||
InvalidOptions(ref e) => write!(f, "{}", e),
|
||||
Help(ref text) => write!(f, "{}", text),
|
||||
Conflict(a, b) => write!(f, "Option --{} conflicts with option {}", a, b),
|
||||
Useless(a, false, b) => write!(f, "Option --{} is useless without option --{}", a, b),
|
||||
Useless(a, true, b) => write!(f, "Option --{} is useless given option --{}", a, b),
|
||||
Conflict(a, b) => write!(f, "Option --{} conflicts with option {}.", a, b),
|
||||
Useless(a, false, b) => write!(f, "Option --{} is useless without option --{}.", a, b),
|
||||
Useless(a, true, b) => write!(f, "Option --{} is useless given option --{}.", a, b),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user