Skip to content

Commit

Permalink
Merge #2
Browse files Browse the repository at this point in the history
2: Fix typo in error message. r=PaulGrandperrin a=frewsxcv
  • Loading branch information
bors[bot] committed Mar 27, 2018
2 parents cfa2180 + c0aa210 commit de3bf50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin/cargo-honggfuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::os::unix::process::CommandExt;
const HONGGFUZZ_TARGET: &'static str = "hfuzz_target";

#[cfg(target_family="windows")]
compile_error!("honggfuzz-rs does not currenlty support Windows but works well under WSL (Windows Subsystem for Linux)");
compile_error!("honggfuzz-rs does not currently support Windows but works well under WSL (Windows Subsystem for Linux)");

fn main() {
let mut args = env::args().skip(1);
Expand All @@ -31,4 +31,4 @@ fn main() {
// code flow will only reach here if honggfuzz failed to execute
eprintln!("cannot execute {}, try to execute \"cargo hfuzz build\" from fuzzed project directory", &command);
process::exit(1);
}
}

0 comments on commit de3bf50

Please sign in to comment.