Skip to content

Commit

Permalink
Testing rust, c++ vs python3.12 BUILD Bob Build (24)
Browse files Browse the repository at this point in the history
  • Loading branch information
spirillen committed Jan 18, 2025
1 parent 73090e0 commit a0e20ad
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tools/sort_lists_project/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,34 +101,34 @@ fn main() {
.short('x')
.long("proxy")
.takes_value(true)
.about("Sets a custom proxy URL")
.help("Sets a custom proxy URL")
)
.arg(
Arg::new("help")
.short('h')
.long("help")
.about("Displays help information")
.help("Displays help information")
)
.arg(
Arg::new("donate")
.short('d')
.short('s')
.long("donate")
.long("sponsor")
.about("Opens the default browser to the donation page")
.help("Opens the default browser to the donation page")
)
.arg(
Arg::new("force")
.short('f')
.long("force")
.about("Forces run on all files, altered or not")
.help("Forces run on all files, altered or not")
)
.arg(
Arg::new("path")
.short('p')
.long("path")
.takes_value(true)
.about("Sets the path to the source directory")
.help("Sets the path to the source directory")
);

let matches = app.get_matches();
Expand Down

0 comments on commit a0e20ad

Please sign in to comment.