From 58c5f5c243d840b64c30feaa53ab33a339708059 Mon Sep 17 00:00:00 2001 From: Paul Grandperrin Date: Tue, 27 Mar 2018 17:12:01 +0200 Subject: [PATCH] Fix typo --- src/bin/cargo-hfuzz.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/cargo-hfuzz.rs b/src/bin/cargo-hfuzz.rs index bf8617b..b58394b 100644 --- a/src/bin/cargo-hfuzz.rs +++ b/src/bin/cargo-hfuzz.rs @@ -9,7 +9,7 @@ const HONGGFUZZ_TARGET: &'static str = "hfuzz_target"; const HONGGFUZZ_WORKSPACE: &'static str = "hfuzz_workspace"; #[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 target_triple() -> String { let output = Command::new("rustc").args(&["-v", "-V"]).output().unwrap();