From a5584bf23ae55c65a476b66f5736f0e883b4ef95 Mon Sep 17 00:00:00 2001 From: ThomasTNO <49478940+ThomasTNO@users.noreply.github.com> Date: Sat, 7 Sep 2024 14:23:12 +0200 Subject: [PATCH] Fix typo in error message (#2515) --- 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(), )); }