Skip to content

Commit 6089cc2

Browse files
Fixed panic feature in baby_fuzzer example (#1656)
* Fixed panic feature in baby_fuzzer example * Fixed typo
1 parent c9e147d commit 6089cc2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/listings/baby_fuzzer/listing-04/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ fn main() {
6161
/* ANCHOR_END: event_manager */
6262

6363
/* ANCHOR: scheduler_fuzzer */
64-
// A queue policy to get testcasess from the corpus
64+
// A queue policy to get testcases from the corpus
6565
let scheduler = QueueScheduler::new();
6666

6767
// A fuzzer with feedbacks and a corpus scheduler

docs/src/baby_fuzzer/baby_fuzzer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ To start, we create the closure that we want to fuzz. It takes a buffer as input
5757
To test the crash manually, you can add a feature in `Cargo.toml` that enables the call that triggers the panic:
5858

5959
```toml
60-
{{#include ../../listings/baby_fuzzer/listing-03/Cargo.toml:22:23}}
60+
{{#include ../../listings/baby_fuzzer/listing-03/Cargo.toml:22:24}}
6161
```
6262

6363
And then run the program with that feature activated:

0 commit comments

Comments
 (0)