diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2023-11-23 22:45:45 +0400 |
---|---|---|
committer | Kirill Chibisov <contact@kchibisov.com> | 2023-11-24 03:01:10 +0400 |
commit | 0b4184130597079c02a6a99e0da77dce9e82a914 (patch) | |
tree | cc67fad5507ae737718a3392fc3f40bc870a5752 /alacritty/src/cli.rs | |
parent | 48b1dc8101935c4383e54156c74659d1cd11f96c (diff) | |
download | r-alacritty-0b4184130597079c02a6a99e0da77dce9e82a914.tar.gz r-alacritty-0b4184130597079c02a6a99e0da77dce9e82a914.tar.bz2 r-alacritty-0b4184130597079c02a6a99e0da77dce9e82a914.zip |
Add migrate to alacritty(1)
Diffstat (limited to 'alacritty/src/cli.rs')
-rw-r--r-- | alacritty/src/cli.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alacritty/src/cli.rs b/alacritty/src/cli.rs index 67446fab..fee2680f 100644 --- a/alacritty/src/cli.rs +++ b/alacritty/src/cli.rs @@ -20,7 +20,7 @@ use crate::logging::LOG_TARGET_IPC_CONFIG; #[derive(Parser, Default, Debug)] #[clap(author, about, version = env!("VERSION"))] pub struct Options { - /// Print all events to stdout. + /// Print all events to STDOUT. #[clap(long)] pub print_events: bool, @@ -262,7 +262,7 @@ pub struct MigrateOptions { #[clap(short, long, value_hint = ValueHint::FilePath)] pub config_file: Option<PathBuf>, - /// Only output TOML config to stdout. + /// Only output TOML config to STDOUT. #[clap(short, long)] pub dry_run: bool, |