diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-01-07 15:59:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-07 15:59:23 +0000 |
commit | fc86d7620e960f3e30adef55b6af755a3c5b6c13 (patch) | |
tree | 5032fb2a709181878ecbd5962419d77bf980c6e5 /alacritty/src/cli.rs | |
parent | 183ceee3adf4ac5a889db3ed904e7adbf9ccb4f1 (diff) | |
download | r-alacritty-fc86d7620e960f3e30adef55b6af755a3c5b6c13.tar.gz r-alacritty-fc86d7620e960f3e30adef55b6af755a3c5b6c13.tar.bz2 r-alacritty-fc86d7620e960f3e30adef55b6af755a3c5b6c13.zip |
Fix keybinding deserialization
Fixes #3160.
Diffstat (limited to 'alacritty/src/cli.rs')
-rw-r--r-- | alacritty/src/cli.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/cli.rs b/alacritty/src/cli.rs index 8abee061..a7b97385 100644 --- a/alacritty/src/cli.rs +++ b/alacritty/src/cli.rs @@ -165,7 +165,7 @@ impl Options { .help("Start the shell in the specified working directory"), ) .arg(Arg::with_name("config-file").long("config-file").takes_value(true).help( - &format!("Specify alternative configuration file [default: {}]", CONFIG_PATH) + &format!("Specify alternative configuration file [default: {}]", CONFIG_PATH), )) .arg( Arg::with_name("command") |