Skip to content

Commit

Permalink
Fix doc comment about removed seed parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast authored and vitalybuka committed Jan 19, 2025
1 parent 7bf98f7 commit 5595eff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mutator.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ namespace protobuf_mutator {

// Randomly makes incremental change in the given protobuf.
// Usage example:
// protobuf_mutator::Mutator mutator(1);
// protobuf_mutator::Mutator mutator;
// mutator.Seed(1);
// MyMessage message;
// message.ParseFromString(encoded_message);
// mutator.Mutate(&message, 10000);
Expand All @@ -44,7 +45,6 @@ namespace protobuf_mutator {
// library like libFuzzer.
class Mutator {
public:
// seed: value to initialize random number generator.
Mutator() = default;
virtual ~Mutator() = default;

Expand Down

0 comments on commit 5595eff

Please sign in to comment.