Skip to content

Commit

Permalink
main: doc no lambda _arg checking in NO_LAMBDA arg help
Browse files Browse the repository at this point in the history
Fixes Github issue #78
  • Loading branch information
astro committed Oct 27, 2024
1 parent 7b2bc25 commit edcd45c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ fn main() {
.action(ArgAction::SetTrue)
.short('_')
.long("no-underscore")
.help("Don't check any bindings that start with a _"),
.help("Don't check any bindings that start with a _\n\
(Lambda arguments starting with _ are not checked anyway.)"
),
)
.arg(
Arg::new("QUIET")
Expand Down

0 comments on commit edcd45c

Please sign in to comment.