From 6bcf654ffc0804d5c819cf1beeb90df771011a26 Mon Sep 17 00:00:00 2001 From: thek4n Date: Sat, 21 Feb 2026 13:36:12 +0300 Subject: [PATCH] chore(args): move root argument to position argument --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 545bd05..80fd11a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -44,7 +44,7 @@ struct Args { port: u16, /// Markdown documents directory root - #[arg(short, long)] + #[arg()] root: PathBuf, }