diff options
author | Joe Wilm <joe@jwilm.com> | 2017-11-11 09:41:37 -0800 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-11-11 09:44:32 -0800 |
commit | 24fce939b700f61004e41e0019062b9bc79ea233 (patch) | |
tree | 30bda0b509712bdda3f11145391141ed1bd8fad0 | |
parent | 812208d8b5f0e9c531a2dcc767ce0f84359c5eb8 (diff) | |
download | alacritty-24fce939b700f61004e41e0019062b9bc79ea233.tar.gz alacritty-24fce939b700f61004e41e0019062b9bc79ea233.zip |
Style fixes
-rw-r--r-- | src/cli.rs | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -74,7 +74,8 @@ impl Options { .long("dimensions") .short("d") .value_names(&["columns", "lines"]) - .help("Defines the window dimensions. Falls back to size specified by window manager if set to 0x0 [default: 80x24]")) + .help("Defines the window dimensions. Falls back to size specified by \ + window manager if set to 0x0 [default: 80x24]")) .arg(Arg::with_name("title") .long("title") .short("t") @@ -97,7 +98,8 @@ impl Options { .arg(Arg::with_name("config-file") .long("config-file") .takes_value(true) - .help("Specify alternative configuration file [default: $XDG_CONFIG_HOME/alacritty/alacritty.yml]")) + .help("Specify alternative configuration file \ + [default: $XDG_CONFIG_HOME/alacritty/alacritty.yml]")) .arg(Arg::with_name("command") .long("command") .short("e") |