8000 Revert "fixed type in doc" · rust-fuzz/libfuzzer@162e810 · GitHub
[go: up one dir, main page]

Skip to content

Commit 162e810

Browse files
committed
Revert "fixed type in doc"
This reverts commit 8188902.
1 parent 8188902 commit 162e810

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ pub fn initialize(_argc: *const isize, _argv: *const *const *const u8) -> isize
109109
/// use libfuzzer_sys::fuzz_target;
110110
///
111111
/// // Note: `|input|` is short for `|input: &[u8]|`.
112-
/// fuzz_target!(|input: &[u8]| {
112+
/// fuzz_target!(|input| {
113113
/// let _result: Result<_, _> = my_crate::parse(input);
114114
/// });
115115
/// # mod my_crate { pub fn parse(_: &[u8]) -> Result<(), ()> { unimplemented!() } }

0 commit comments

Comments
 (0)
0