From efd389116e4427ccf99089b61a7280e280d9b74f Mon Sep 17 00:00:00 2001 From: notohh Date: Sat, 1 Jun 2024 14:27:38 -0400 Subject: [PATCH] fix typo --- src/args.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/args.rs b/src/args.rs index beab0bd..373217f 100644 --- a/src/args.rs +++ b/src/args.rs @@ -3,7 +3,7 @@ use clap::Parser; #[derive(Parser, Debug)] pub struct Args { #[arg(short)] - pub(crate) length: usize, + pub length: usize, #[arg(short)] pub write_to_file: bool, #[arg(short, default_value_t = String::from("generated_pwd.txt"))]