From 647c4e6d0c609e7af5e73d9cfde96c02b798dd90 Mon Sep 17 00:00:00 2001 From: Valentin Huber Date: Thu, 19 Dec 2024 13:07:45 +0000 Subject: [PATCH] Fix docs link --- libafl/src/mutators/mapping.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libafl/src/mutators/mapping.rs b/libafl/src/mutators/mapping.rs index 8447a054ab..2d5a6d1ebe 100644 --- a/libafl/src/mutators/mapping.rs +++ b/libafl/src/mutators/mapping.rs @@ -81,7 +81,7 @@ impl Named for MappingMutator { } } -/// Mapper to use to map a [`tuple_list`] of [`Mutator`]s using [`ToMappingMutatorMapper`]s. +/// Mapper to use to map a [`tuple_list`] of [`Mutator`]s using [`ToMappingMutator`]s. /// /// See the explanation of [`MappingMutator`] for details. /// @@ -127,7 +127,7 @@ pub struct ToMappingMutator { } impl ToMappingMutator { - /// Creates a new [`ToMappingMutatorMapper`] + /// Creates a new [`ToMappingMutator`] pub fn new(mapper: F) -> Self { Self { mapper } }