From 52b9fcd5d7032399fca17e3c88ea1ed62d927936 Mon Sep 17 00:00:00 2001 From: Drew Short Date: Wed, 5 Dec 2018 19:39:16 -0600 Subject: [PATCH] Args update --- src/args/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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