From 01d24269dfabc8da7c18a36fcbbd8ed3344d4b69 Mon Sep 17 00:00:00 2001 From: Maxim Svistunov Date: Sun, 28 Jan 2024 20:19:50 +0100 Subject: [PATCH] Fix arg name collision --- client/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/main.rs b/client/src/main.rs index 31d5d82..66b281d 100644 --- a/client/src/main.rs +++ b/client/src/main.rs @@ -17,7 +17,7 @@ struct Cli { port: u16, /// Host name or IP address of the server. - #[arg(short, long, default_value = "127.0.0.1", help = "Host name or IP address of the server")] + #[arg(long, default_value = "127.0.0.1", help = "Host name or IP address of the server")] host: String, }