Fixed panic feature in baby_fuzzer example (#1656)

* Fixed panic feature in baby_fuzzer example

* Fixed typo
This commit is contained in:
Nereuxofficial 2023-11-08 00:14:42 +01:00 committed by GitHub
parent c9e147de8c
commit 6089cc21ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ fn main() {
/* ANCHOR_END: event_manager */
/* ANCHOR: scheduler_fuzzer */
// A queue policy to get testcasess from the corpus
// A queue policy to get testcases from the corpus
let scheduler = QueueScheduler::new();
// A fuzzer with feedbacks and a corpus scheduler

View File

@ -57,7 +57,7 @@ To start, we create the closure that we want to fuzz. It takes a buffer as input
To test the crash manually, you can add a feature in `Cargo.toml` that enables the call that triggers the panic:
```toml
{{#include ../../listings/baby_fuzzer/listing-03/Cargo.toml:22:23}}
{{#include ../../listings/baby_fuzzer/listing-03/Cargo.toml:22:24}}
```
And then run the program with that feature activated: