diff --git a/tests/fuzzers/README.md b/tests/fuzzers/README.md index 7611c53698..eeb2222692 100644 --- a/tests/fuzzers/README.md +++ b/tests/fuzzers/README.md @@ -31,11 +31,10 @@ go-fuzz -bin ./rlp/rlp-fuzz.zip ### Notes -Once a 'crasher' is found, the fuzzer tries to avoid reporting the same vector twice, so stores the fault in the `suppressions` folder. Thus, if you -e.g. make changes to fix a bug, you should _remove_ all data from the `suppressions`-folder, to verify that the issue is indeed resolved. +Once a 'crasher' is found, the fuzzer tries to avoid reporting the same vector twice, so it stores the fault in the `suppressions` folder. Thus, if you, for example, make changes to fix a bug, you should _remove_ all data from the `suppressions`-folder, to verify that the issue is indeed resolved. -Also, if you have only one and the same exit-point for multiple different types of test, the suppression can make the fuzzer hide different types of errors. So make -sure that each type of failure is unique (for an example, see the rlp fuzzer, where a counter `i` is used to differentiate between failures: +Also, if you have only one and the same exit point for multiple different types of test, the suppression can make the fuzzer hide different types of errors. So make +sure that each type of failure is unique (for example, see the RLP fuzzer, where a counter `i` is used to differentiate between failures: ```golang if !bytes.Equal(input, output) {