diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2020-08-10 15:22:11 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-10 15:22:11 +0300 |
commit | b630bb45df4e53c01d24251dafa889a7987d8b33 (patch) | |
tree | 4388eb93a519ee258e0b36be235c46cd095de6ce | |
parent | 1d00883f10500675bbe2bb62916d6a16499972ee (diff) | |
download | alacritty-b630bb45df4e53c01d24251dafa889a7987d8b33.tar.gz alacritty-b630bb45df4e53c01d24251dafa889a7987d8b33.zip |
Remove markdownish markup from `--help` output
-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 1f677488..5da6332b 100644 --- a/alacritty/src/cli.rs +++ b/alacritty/src/cli.rs @@ -130,7 +130,7 @@ impl Options { .takes_value(true) .use_delimiter(true) .help(&format!( - "Defines window class or `app_id` on Linux [default: {}]", + "Defines window class/app_id on X11/Wayland [default: {}]", DEFAULT_NAME )), ) |