From 0b4184130597079c02a6a99e0da77dce9e82a914 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Thu, 23 Nov 2023 22:45:45 +0400 Subject: Add migrate to alacritty(1) --- alacritty/src/cli.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'alacritty/src') 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, - /// Only output TOML config to stdout. + /// Only output TOML config to STDOUT. #[clap(short, long)] pub dry_run: bool, -- cgit