From df47fffd48002df342388939dd4b5ad447ce602c Mon Sep 17 00:00:00 2001 From: cwshugg Date: Wed, 16 Oct 2024 13:58:33 -0400 Subject: [PATCH] minor comment typo fix --- src/project.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/project.rs b/src/project.rs index 51d4cea..5698463 100644 --- a/src/project.rs +++ b/src/project.rs @@ -242,7 +242,7 @@ impl FuzzProject { rustflags.push_str(" -Cdebug-assertions"); } if build.triple.contains("-msvc") { - // The entrypoint is in the bundled libfuzzer rlib, this gets the linker to find it. + // The entrypoint is in the bundled libfuzzer rlib, this gets the linker to find it. rustflags.push_str(" -Clink-arg=/include:main"); }