feat: match version numbers

This commit is contained in:
graelo 2021-03-17 10:12:57 +01:00
parent 646ee8b9fb
commit 0e0e581f86
4 changed files with 12 additions and 17 deletions

View file

@ -23,7 +23,7 @@ impl OutputDestination {
impl fmt::Display for OutputDestination {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::Tmux => write!(f, "tmux"),
Self::Tmux => write!(f, "tmux buffer"),
Self::Clipboard => write!(f, "clipboard"),
}
}