From 2615fedcdfde45f0f4fa9d13e4edcf870cde5cc4 Mon Sep 17 00:00:00 2001 From: cwshugg Date: Wed, 16 Oct 2024 14:49:40 -0400 Subject: [PATCH] fixed minor comment typo --- src/project.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/project.rs b/src/project.rs index 8359a58..1017d63 100644 --- a/src/project.rs +++ b/src/project.rs @@ -247,8 +247,8 @@ impl FuzzProject { // the DLL to compile with an external reference to `main`. // DLLs/shared libraries are designed to be built as a separate // object file, intentionally left *without* knowledge of the entry - // point. So, by forcing a DLL to include `main` will cause linking - // to fail. Using `--no-include-main-msvc` will allow the DLL to be + // point. So, forcing a DLL to include `main` will cause linking to + // fail. Using `--no-include-main-msvc` will allow the DLL to be // built without issue. rustflags.push_str(" -Clink-arg=/include:main"); }