diff --git a/src/main/java/picocli/CommandLine.java b/src/main/java/picocli/CommandLine.java index 9c4a100e5..dce5d9f85 100644 --- a/src/main/java/picocli/CommandLine.java +++ b/src/main/java/picocli/CommandLine.java @@ -3746,8 +3746,7 @@ public enum ScopeType { *

* A note on boolean options *

- * By default picocli allows boolean options (also called "flags" or "switches") to have an optional parameter, - * which must be either "true" or "false" (lowercase, other values are rejected). + * By default picocli allows boolean options (also called "flags" or "switches") to have an optional parameter. * You can make a boolean option take a required parameter by annotating your field with {@code arity="1"}. * For example:

*
@Option(names = "-v", arity = "1") boolean verbose;