diff options
author | Nicholas Johnson <nick@nicholasjohnson.ch> | 2024-04-20 00:00:00 +0000 |
---|---|---|
committer | Nicholas Johnson <nick@nicholasjohnson.ch> | 2024-04-20 00:00:00 +0000 |
commit | 793e22b833f1244ecb71929d7f352943ac9a365d32f3539701e7e4eb7e06c409 (patch) | |
tree | 426a3078763ef9d7d87e23d13e22aba1416a93b26169853709ae8c6be4601146 /src/main.rs | |
parent | e3946801ed3c1068077be169f04770c8b38a00b66399172837e7e0b60f065e3d (diff) | |
download | hitomezashi-rs-793e22b833f1244ecb71929d7f352943ac9a365d32f3539701e7e4eb7e06c409.tar.gz hitomezashi-rs-793e22b833f1244ecb71929d7f352943ac9a365d32f3539701e7e4eb7e06c409.zip |
Improve readability and comments
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 3732b50..0da3b0e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -33,14 +33,14 @@ struct Cli { #[arg(value_parser = value_parser!(usize))] height: usize, + /// Set skew #[arg(short, long)] #[arg(default_value_t = 0.5)] #[arg(value_parser = value_parser!(f64))] - /// Set skew skew: f64, } -/* CLI for hitomezashi */ +// CLI for hitomezashi fn main() { let cli = Cli::parse(); |