From 30e1db4bca424844d37a1619a0e3ffdc81082019 Mon Sep 17 00:00:00 2001 From: Valentin Huber Date: Sun, 15 Dec 2024 16:23:32 +0100 Subject: [PATCH] Fix docs again --- libafl/src/mutators/mod.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libafl/src/mutators/mod.rs b/libafl/src/mutators/mod.rs index 294a713409..26b20a519d 100644 --- a/libafl/src/mutators/mod.rs +++ b/libafl/src/mutators/mod.rs @@ -92,9 +92,8 @@ impl From for MutationId { /// Result of the mutation. /// /// [`MutationResult::Skipped`] does not necessarily mean that the input changed, -/// just that the mutator did something. -#[cfg(feature = "std")] -/// For slow targets, consider wrapping your mutator in a [`hash::HashMutator`] +/// just that the mutator did something. For slow targets, consider wrapping your +/// mutator in a [`hash::HashMutator`]. #[derive(Clone, Copy, Debug, PartialEq, Eq)] pub enum MutationResult { /// The [`Mutator`] executed on this `Input`. It may still be the same.