From 0cc9c2257d235acc00119532861f384d6a36384d Mon Sep 17 00:00:00 2001 From: theshank Date: Thu, 9 Nov 2023 11:43:00 -0500 Subject: [PATCH] Update guide.md (fix typo in fuzzing_repro section) This commit fixes the command indicated in the fuzzing_repro section. --- src/cargo-fuzz/guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)]