Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove extraneous backtick in libFuzzerTutorial.md #112

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tutorial/libFuzzerTutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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

Expand Down