From 84527f88eadcba9c765ecbf83840e8549c57d313 Mon Sep 17 00:00:00 2001 From: altugbakan Date: Sun, 12 Mar 2023 16:56:12 +0300 Subject: [PATCH] Update help casing --- src/config.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config.rs b/src/config.rs index 0b9032d..3c6ca63 100644 --- a/src/config.rs +++ b/src/config.rs @@ -72,11 +72,11 @@ impl Config { println!("TFTP Server Daemon\n"); println!("Usage: tftpd [OPTIONS]\n"); println!("Options:"); - println!(" -i, --ip-address \tSet the ip address of the server (Default: 127.0.0.1)"); + println!(" -i, --ip-address \tSet the ip address of the server (default: 127.0.0.1)"); println!( - " -p, --port \t\tSet the listening port of the server (Default: 69)" + " -p, --port \t\tSet the listening port of the server (default: 69)" ); - println!(" -d, --directory \tSet the listening port of the server (Default: Current Working Directory)"); + println!(" -d, --directory \tSet the listening port of the server (default: Current Working Directory)"); println!(" -h, --help\t\t\tPrint help information"); process::exit(0); }