Skip to content

Commit

Permalink
improve docs
Browse files Browse the repository at this point in the history
  • Loading branch information
riesentoaster committed Dec 13, 2024
1 parent 4158166 commit 829e365
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libafl/src/mutators/numeric.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ impl Named for NegateMutator {
}
}

/// Increment mutation for integer-like inputs
/// Increment mutation for integer-like inputs. Wraps on overflows.
#[derive(Debug)]
pub struct IncMutator;

Expand All @@ -244,7 +244,7 @@ impl Named for IncMutator {
}
}

/// Decrement mutation for integer-like inputs
/// Decrement mutation for integer-like inputs. Wraps on underflow.
#[derive(Debug)]
pub struct DecMutator;

Expand Down

0 comments on commit 829e365

Please sign in to comment.