From 1c3bd029b6b926bd59b12d4280eae77c7870bb78 Mon Sep 17 00:00:00 2001 From: Brian Tracy <85181266+btracy-onshape@users.noreply.github.com> Date: Wed, 5 Jul 2023 12:16:05 -0400 Subject: [PATCH] Remove extraneous backtick in libFuzzerTutorial.md --- tutorial/libFuzzerTutorial.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorial/libFuzzerTutorial.md b/tutorial/libFuzzerTutorial.md index 00bc539..17a78cc 100644 --- a/tutorial/libFuzzerTutorial.md +++ b/tutorial/libFuzzerTutorial.md @@ -558,7 +558,7 @@ In an infinite loop do the following: * Build the fuzz target * Copy the current corpus from cloud to local disk * Fuzz for some time. - * With libFuzzer, use the flag `-max_total_time=N` to set the time in seconds). + * With libFuzzer, use the flag `-max_total_time=N` to set the time in seconds. * Synchronize the updated corpus back to the cloud * Provide the logs, coverage information, crash reports, and crash reproducers via e-mail, web interface, or cloud storage. @@ -596,7 +596,7 @@ also contains a reproducer for the OOM bug. Find it. Can you reproduce the OOM? Sometimes using 2Gb per one target invocation is not a bug, -and so you can use `-rss_limit_mb=N` to set another limit.` +and so you can use `-rss_limit_mb=N` to set another limit. ### Leaks