aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJoel Galenson <jgalenson@google.com>2021-09-22 11:22:15 -0700
committerJoel Galenson <jgalenson@google.com>2021-09-22 11:22:15 -0700
commit3a84c421cd3018dfa0264eb5e43413aebdfa8a87 (patch)
tree67d12643bde23f5575ac43a9cfdcd606af977b83 /examples
parent236d4349c26f7f504a18a2966f33fcbe66144adf (diff)
downloadstructopt-3a84c421cd3018dfa0264eb5e43413aebdfa8a87.tar.gz
Upgrade rust/crates/structopt to 0.3.23
Test: make Change-Id: I4dba7f980033089367c7735fedcc21beee82e2b7
Diffstat (limited to 'examples')
-rw-r--r--examples/true_or_false.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/true_or_false.rs b/examples/true_or_false.rs
index 31a543e..814f3d8 100644
--- a/examples/true_or_false.rs
+++ b/examples/true_or_false.rs
@@ -23,7 +23,7 @@ struct Opt {
bar: bool,
// `bool` can be positional only with explicit `parse(...)` annotation
- #[structopt(long, parse(try_from_str))]
+ #[structopt(parse(try_from_str))]
boom: bool,
}