From 1a0499e95b563d1f30f0d07ee8c774c261f04f56 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Tue, 18 Oct 2022 11:18:40 -0700 Subject: [PATCH] Remove trailing whitespace --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index bd5bc07..ce1eb98 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -131,7 +131,7 @@ pub fn initialize(_argc: *const isize, _argv: *const *const *const u8) -> isize /// from the corpus, return either [Corpus::Keep] or [Corpus::Reject] from your /// fuzz target. The default behavior (e.g. if `()` is returned) is to keep the /// input in the corpus. -/// +/// /// For example: /// /// ```no_run