Small typo fix

This commit is contained in:
altugbakan 2023-03-12 15:20:51 +03:00
parent e59aea6dbb
commit 95d344f491
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View file

@ -4,4 +4,4 @@ version = 3
[[package]] [[package]]
name = "tftpd" name = "tftpd"
version = "0.1.2" version = "0.1.3"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "tftpd" name = "tftpd"
version = "0.1.2" version = "0.1.3"
authors = ["Altuğ Bakan <mail@alt.ug>"] authors = ["Altuğ Bakan <mail@alt.ug>"]
edition = "2021" edition = "2021"
description = "Multithreaded TFTP server daemon" description = "Multithreaded TFTP server daemon"

View file

@ -76,7 +76,7 @@ impl Config {
println!( println!(
" -p, --port <PORT>\t\tSet the listening port of the server (Default: 69)" " -p, --port <PORT>\t\tSet the listening port of the server (Default: 69)"
); );
println!(" -d, --directory <DIRECTORY>\tSet the listening port of the server (default: Current Working Directory)"); println!(" -d, --directory <DIRECTORY>\tSet the listening port of the server (Default: Current Working Directory)");
println!(" -h, --help\t\t\tPrint help information"); println!(" -h, --help\t\t\tPrint help information");
process::exit(0); process::exit(0);
} }