Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hkctkuy committed Jun 12, 2024
1 parent 08336ac commit 69d8f34
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions casr/src/bin/casr-afl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ fn main() -> Result<()> {
.arg(
Arg::new("join")
.long("join")
.env("CASR_PREV_CLSUTERS_DIR")
.env("CASR_PREV_CLUSTERS_DIR")
.action(ArgAction::Set)
.value_parser(clap::value_parser!(PathBuf))
.value_name("PREV_CLSUTERS_DIR")
.value_name("PREV_CLUSTERS_DIR")
.help("Use directory with previously triaged reports for new reports accumulation")
)
.arg(
Expand Down
4 changes: 2 additions & 2 deletions casr/src/bin/casr-libfuzzer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ fn main() -> Result<()> {
.arg(
Arg::new("join")
.long("join")
.env("CASR_PREV_CLSUTERS_DIR")
.env("CASR_PREV_CLUSTERS_DIR")
.action(ArgAction::Set)
.value_parser(clap::value_parser!(PathBuf))
.value_name("PREV_CLSUTERS_DIR")
.value_name("PREV_CLUSTERS_DIR")
.help("Use directory with previously triaged reports for new reports accumulation")
)
.arg(
Expand Down

0 comments on commit 69d8f34

Please sign in to comment.