diff --git a/src/cargo-fuzz/guide.md b/src/cargo-fuzz/guide.md index 239961d..34cf2b4 100644 --- a/src/cargo-fuzz/guide.md +++ b/src/cargo-fuzz/guide.md @@ -28,7 +28,7 @@ Every crate instrumented for fuzzing -- the `fuzz_targets` crate, the project cr ## `#[cfg(fuzzing_repro)]` -When you run `cargo fuzz `, every crate is compiled with the `--cfg fuzzing_repro` rustc option. This allows you to leave debugging statements in your fuzz targets behind a `#[cfg(fuzzing_repro)]`: +When you run `cargo fuzz run `, every crate is compiled with the `--cfg fuzzing_repro` rustc option. This allows you to leave debugging statements in your fuzz targets behind a `#[cfg(fuzzing_repro)]`: ```rust #[cfg(fuzzing_repro)]