aboutsummaryrefslogtreecommitdiff
path: root/src/cli.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli.rs')
-rw-r--r--src/cli.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli.rs b/src/cli.rs
index cfd36b7..8bb8004 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -20,7 +20,7 @@ use clap::Parser;
use std::ops::RangeInclusive;
#[derive(Parser)]
-#[command(version, about, long_about = None)] // Read from `Cargo.toml`
+#[command(version, about, author, long_about = None)] // Read from `Cargo.toml`
struct Cli {
/// Pattern width
#[arg(value_parser = dimension_in_range)]
@@ -30,7 +30,7 @@ struct Cli {
#[arg(value_parser = dimension_in_range)]
height: usize,
- /// Set skew
+ /// Set skew. Skew values near 0 or 1 generate orderly patterns. Skew values near 0.5 generate chaotic patterns.
#[arg(short, long)]
#[arg(default_value_t = 0.5)]
#[arg(value_parser = skew_in_range)]