diff --git a/alacritty.man b/alacritty.man index 9a6e43d2..4e2e2abf 100644 --- a/alacritty.man +++ b/alacritty.man @@ -40,7 +40,7 @@ Prints version information .SH "OPTIONS" .TP \fB\-\-class\fR -Defines the window class on X11 [default: Alacritty] +Defines the window class on Linux [default: Alacritty] .TP \fB\-e\fR, \fB\-\-command\fR ... Command and args to execute (must be last argument) diff --git a/src/cli.rs b/src/cli.rs index 1997a6bb..f134f358 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -100,7 +100,7 @@ impl Options { .arg(Arg::with_name("class") .long("class") .takes_value(true) - .help(&format!("Defines window class on X11 [default: {}]", DEFAULT_NAME))) + .help(&format!("Defines window class on Linux [default: {}]", DEFAULT_NAME))) .arg(Arg::with_name("q") .short("q") .multiple(true)