diff options
Diffstat (limited to 'src/cli.rs')
-rw-r--r-- | src/cli.rs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -16,7 +16,7 @@ use clap::{Arg, App, crate_name, crate_version, crate_authors, crate_description use crate::index::{Line, Column}; use crate::config::{Dimensions, Shell}; -use crate::window::{DEFAULT_TITLE, DEFAULT_CLASS}; +use crate::window::{DEFAULT_NAME}; use std::path::{Path, PathBuf}; use std::borrow::Cow; @@ -87,11 +87,11 @@ impl Options { .long("title") .short("t") .takes_value(true) - .help(&format!("Defines the window title [default: {}]", DEFAULT_TITLE))) + .help(&format!("Defines the window title [default: {}]", DEFAULT_NAME))) .arg(Arg::with_name("class") .long("class") .takes_value(true) - .help(&format!("Defines window class on X11 [default: {}]", DEFAULT_CLASS))) + .help(&format!("Defines window class on X11 [default: {}]", DEFAULT_NAME))) .arg(Arg::with_name("q") .short("q") .multiple(true) |