Skip to content

Commit

Permalink
Rust example: Spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Stadermann committed Jun 24, 2024
1 parent 254db88 commit adb876b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust/examples/gscan/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ async fn main() -> VResult<()> {
.long("files")
.required_unless_present("urls")
.action(ArgAction::Append)
.help("List of files to scan spearated by whitepace"),
.help("List of files to scan separated by whitepace"),
)
.arg(
Arg::new("urls")
.short('u')
.long("urls")
.action(ArgAction::Append)
.required_unless_present("files")
.help("List of urls to scan spearated by whitepace"),
.help("List of urls to scan separated by whitepace"),
)
.arg(
Arg::new("client_id")
Expand Down

0 comments on commit adb876b

Please sign in to comment.