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 } }