@@ -31,7 +31,7 @@ Features of the fuzz target:
3131* The fuzz target must call the test function/library with wither the passed buffer or a transformation on the test buffer
3232if the structure is different or from different type.
3333* Fuzz functions can also implement application level checks to catch application/logical bugs - For example:
34- decode the buffer with the testable library encode it again and check that both results are equal. To communicate the results
34+ decode the buffer with the testable library, encode it again, and check that both results are equal. To communicate the results
3535the result/bug the function should throw an exception.
3636* jsfuzz will report any unhandled exceptions as crashes as well as inputs that hit the memory limit specified to jsfuzz
3737or hangs/they run more the the specified timeout limit per testcase.
@@ -52,7 +52,7 @@ function fuzz(buf) {
5252 e .message .indexOf (' Failed to' ) !== - 1 ||
5353 e .message .indexOf (' DecoderBuffer' ) !== - 1 ||
5454 e .message .indexOf (' invalid table spec' ) !== - 1 ||
55- e .message .indexOf (' SOI not found ) !== -1' ) ) {
55+ e .message .indexOf (' SOI not found1 ) !== -1) {
5656 } else {
5757 throw e;
5858 }
@@ -66,7 +66,7 @@ module.exports = {
6666
6767### Running
6868
69- The next step is to download js-fuzz and the your fuzzer
69+ The next step is to download js-fuzz and then run your fuzzer
7070
7171```bash
7272npm i -g jsfuzz
@@ -121,7 +121,7 @@ For coverage jsfuzz is using [istanbuljs](https://istanbul.js.org) instrumentati
121121
122122## Contributions
123123
124- Contributions are welcome!:) There are still a lot of things to improve,test and features to add. We will slowly post those in the
124+ Contributions are welcome! : ) There are still a lot of things to improve, and tests and features to add . We will slowly post those in the
125125issues section . Before doing any major contribution please open an issue so we can discuss and help guide the process before
126126any unnecessary work is done.
127127
0 commit comments