diff --git a/src/args/mod.rs b/src/args/mod.rs index 7641f47..b281c6c 100644 --- a/src/args/mod.rs +++ b/src/args/mod.rs @@ -9,8 +9,8 @@ pub mod parse; pub fn get_app() -> App<'static, 'static> { App::new("Dynamic DNS Server") + .author("Drew Short, ") .version(VERSION) - .author("Drew Short ") .about("Receive DDNS requests and update associated cloudflare subdomains") .args(&[ Arg::with_name("config") @@ -39,7 +39,7 @@ pub fn get_app() -> App<'static, 'static> { .long("workers") .value_name("NUMBER") .default_value(&DEFAULT_WORKERS_STR) - .help("The number of workers to serve requests with.") + .help("The number of workers to serve requests with (Defaults to the number of cores on the system).") .takes_value(true), ]) } \ No newline at end of file