Skip to content

Commit

Permalink
Rearrange help page.
Browse files Browse the repository at this point in the history
  • Loading branch information
Euphrasiologist committed Apr 8, 2022
1 parent 4e0e458 commit 869fd20
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,16 +234,16 @@ async fn main() -> Result<()> {
.long("print-expression")
.help("Print all variables in GoaT currently, with their associated variants.\nUseful for construction of expressions.")
)
.arg(
Arg::new("progress-bar")
.long("progress-bar")
.help("Add a progress bar to large queries, to estimate time left.")
)
.arg(
Arg::new("url")
.short('u')
.long("url")
.help("Print the underlying GoaT API URL(s). Useful for debugging."),
)
.arg(
Arg::new("progress-bar")
.long("progress-bar")
.help("Add a progress bar to large queries, to estimate time left.")
),
)
// copy of the above.
Expand Down Expand Up @@ -454,16 +454,16 @@ async fn main() -> Result<()> {
.long("print-expression")
.help("Print all variables in GoaT currently, with their associated variants.\nUseful for construction of expressions.")
)
.arg(
Arg::new("progress-bar")
.long("progress-bar")
.help("Add a progress bar to large queries, to estimate time left.")
)
.arg(
Arg::new("url")
.short('u')
.long("url")
.help("Print the underlying GoaT API URL(s). Useful for debugging."),
)
.arg(
Arg::new("progress-bar")
.long("progress-bar")
.help("Add a progress bar to large queries, to estimate time left.")
),
)
.subcommand(
Expand Down

0 comments on commit 869fd20

Please sign in to comment.