Skip to content

Commit 5595eff

Browse files
chfastvitalybuka
authored andcommitted
Fix doc comment about removed seed parameter
1 parent 7bf98f7 commit 5595eff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mutator.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ namespace protobuf_mutator {
3232

3333
// Randomly makes incremental change in the given protobuf.
3434
// Usage example:
35-
// protobuf_mutator::Mutator mutator(1);
35+
// protobuf_mutator::Mutator mutator;
36+
// mutator.Seed(1);
3637
// MyMessage message;
3738
// message.ParseFromString(encoded_message);
3839
// mutator.Mutate(&message, 10000);
@@ -44,7 +45,6 @@ namespace protobuf_mutator {
4445
// library like libFuzzer.
4546
class Mutator {
4647
public:
47-
// seed: value to initialize random number generator.
4848
Mutator() = default;
4949
virtual ~Mutator() = default;
5050

0 commit comments

Comments
 (0)