We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 028f4e1 commit 7ae224aCopy full SHA for 7ae224a
src/lib.rs
@@ -149,7 +149,7 @@ pub fn initialize(_argc: *const isize, _argv: *const *const *const u8) -> isize
149
/// let value = parts[1];
150
/// let _result: Result<_, _> = my_crate::parse(key, value);
151
/// Corpus::Keep
152
-/// );
+/// });
153
/// # mod my_crate { pub fn parse(_key: &str, _value: &str) -> Result<(), ()> { unimplemented!() } }
154
/// ```
155
///
@@ -218,7 +218,7 @@ macro_rules! fuzz_target {
218
.expect("failed to create `RUST_LIBFUZZER_DEBUG_PATH` file");
219
writeln!(&mut file, "{:?}", bytes)
220
.expect("failed to write to `RUST_LIBFUZZER_DEBUG_PATH` file");
221
- return;
+ return 0;
222
}
223
224
run(bytes);
0 commit comments