From b43e256caa0310fe3041ae4bedc40702026967ca Mon Sep 17 00:00:00 2001 From: Thomas Rooijakkers Date: Sat, 7 Sep 2024 13:07:01 +0200 Subject: [PATCH] Fix typo in error message --- libafl/src/stages/calibrate.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libafl/src/stages/calibrate.rs b/libafl/src/stages/calibrate.rs index 7a16cfa8ea..83666cd296 100644 --- a/libafl/src/stages/calibrate.rs +++ b/libafl/src/stages/calibrate.rs @@ -264,7 +264,7 @@ where if bitmap_size < 1 { return Err(Error::invalid_corpus( - "This testcase doesnot trigger trigger any edges. Check your instrumentation!" + "This testcase does not trigger any edges. Check your instrumentation!" .to_string(), )); }