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); }