Skip to content

Commit e257b3a

Browse files
authored
tests/fuzzers/modexp: gofmt (#25972)
1 parent bed3b10 commit e257b3a

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

tests/fuzzers/modexp/modexp-fuzzer.go

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,15 @@ import (
2525
"github.com/ethereum/go-ethereum/core/vm"
2626
)
2727

28+
// Fuzz is the fuzzing entry-point.
2829
// The function must return
29-
// 1 if the fuzzer should increase priority of the
30-
// given input during subsequent fuzzing (for example, the input is lexically
31-
// correct and was parsed successfully);
32-
// -1 if the input must not be added to corpus even if gives new coverage; and
33-
// 0 otherwise
30+
//
31+
// - 1 if the fuzzer should increase priority of the
32+
// given input during subsequent fuzzing (for example, the input is lexically
33+
// correct and was parsed successfully);
34+
// - -1 if the input must not be added to corpus even if gives new coverage; and
35+
// - 0 otherwise
36+
//
3437
// other values are reserved for future use.
3538
func Fuzz(input []byte) int {
3639
if len(input) <= 96 {

0 commit comments

Comments
 (0)