From a52c0e59317f42c7a98ded1b79439ed9fcd2e538 Mon Sep 17 00:00:00 2001 From: "Sergey \"Shnatsel\" Davidoff" Date: Tue, 16 Jul 2024 01:29:14 +0100 Subject: [PATCH] Less verbose comment --- src/project.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/project.rs b/src/project.rs index b646e92..799a42b 100644 --- a/src/project.rs +++ b/src/project.rs @@ -189,8 +189,7 @@ impl FuzzProject { } if !matches!(build.sanitizer, Sanitizer::None) { - // Select the appropriate sanitizer flag for the given rustc version: - // either -Zsanitizer or -Csanitizer. + // Select the appropriate sanitizer flag for the given rustc version let rust_version = RustVersion::discover()?; let sanitizer_flag = match rust_version.has_sanitizers_on_stable() { true => "-Csanitizer",