FIx typos README.md

This commit is contained in:
Soulcollector 2025-01-04 22:10:27 +03:00 committed by GitHub
parent 20b95cd55b
commit c7e58487c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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) {