Skip to content

Commit a1ad69d

Browse files
committed
Add input format help to CLI start and end arguments
1 parent 1bf9f1c commit a1ad69d

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

Diff for: src/main.rs

+10-2
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,18 @@ struct Opts {
132132
)]
133133
command_args: Vec<OsString>,
134134

135-
#[structopt(long = "start", help = "Left bound for search (*without* regression)")]
135+
#[structopt(
136+
long = "start",
137+
help = "Left bound for search (*without* regression). You can use \
138+
a date (YYYY-MM-DD), git tag name (e.g. 1.58.0) or git commit SHA."
139+
)]
136140
start: Option<Bound>,
137141

138-
#[structopt(long = "end", help = "Right bound for search (*with* regression)")]
142+
#[structopt(
143+
long = "end",
144+
help = "Right bound for search (*with* regression). You can use \
145+
a date (YYYY-MM-DD), git tag name (e.g. 1.58.0) or git commit SHA."
146+
)]
139147
end: Option<Bound>,
140148

141149
#[structopt(long = "by-commit", help = "Bisect via commit artifacts")]

0 commit comments

Comments
 (0)