8000 fmt · rust-fuzz/libfuzzer@55cb6cd · GitHub
[go: up one dir, main page]

Skip to content

Commit 55cb6cd

Browse files
committed
fmt
1 parent 916627d commit 55cb6cd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -195,15 +195,15 @@ pub fn initialize(_argc: *const isize, _argv: *const *const *const u8) -> isize
195195
///
196196
/// You can also enable the `arbitrary` crate's custom derive via this crate's
197197
/// `"arbitrary-derive"` cargo feature.
198-
///
198+
///
199199
/// ## Init Code
200-
///
200+
///
201201
/// Init code to the fuzz target by using the `init` keyword. This is called once before the fuzzer starts.
202202
/// Supports short |input| or |input: <type>| syntax.
203-
///
203+
///
204204
/// ```no_run
205205
/// #![no_main]
206-
///
206+
///
207207
/// use libfuzzer_sys::fuzz_target;
208208
/// use std::collections::HashSet;
209209
/// use std::sync::OnceLock;
@@ -221,7 +221,7 @@ pub fn initialize(_argc: *const isize, _argv: *const *const *const u8) -> isize
221221
/// }
222222
/// );
223223
/// ```
224-
///
224+
///
225225
#[macro_export]
226226
macro_rules! fuzz_target {
227227
(init: $init:expr, |$bytes:ident| $body:expr) => {

0 commit comments

Comments
 (0)
0