From 95d344f491a8321b1b3d04ed7e0b42731c352e45 Mon Sep 17 00:00:00 2001 From: altugbakan Date: Sun, 12 Mar 2023 15:20:51 +0300 Subject: [PATCH] Small typo fix --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/config.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8b8b524..ec4a50b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,4 +4,4 @@ version = 3 [[package]] name = "tftpd" -version = "0.1.2" +version = "0.1.3" diff --git a/Cargo.toml b/Cargo.toml index 24b9217..b919529 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tftpd" -version = "0.1.2" +version = "0.1.3" authors = ["Altuğ Bakan "] edition = "2021" description = "Multithreaded TFTP server daemon" diff --git a/src/config.rs b/src/config.rs index 0340f5f..0b9032d 100644 --- a/src/config.rs +++ b/src/config.rs @@ -76,7 +76,7 @@ impl Config { println!( " -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); }