aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/example
diff options
context:
space:
mode:
authorGravatar Kostya Serebryany <konstantin.s.serebryany@gmail.com>2017-05-15 17:47:30 -0700
committerGravatar GitHub <noreply@github.com>2017-05-15 17:47:30 -0700
commit7658a1fd84861812781fcd78c85f1a11af6ad924 (patch)
treeb5fddac429021921c916cfddcd3b8cce55fb8d5f /projects/example
parent6c67064b01cd5157f675028515c1f627bfd5f025 (diff)
Update README.md
Diffstat (limited to 'projects/example')
-rw-r--r--projects/example/my-api-repo/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/example/my-api-repo/README.md b/projects/example/my-api-repo/README.md
index b3b8d328..ad4e66e4 100644
--- a/projects/example/my-api-repo/README.md
+++ b/projects/example/my-api-repo/README.md
@@ -10,7 +10,7 @@ Imagine that these files reside in your project's repository:
* [do_stuff_fuzzer.cpp](do_stuff_fuzzer.cpp): is a [fuzz target](http://libfuzzer.info/#fuzz-target) for `DoStuff()`.
* [standalone_fuzz_taget_runner.cpp](standalone_fuzz_taget_runner.cpp): is a simple standalone runnner for fuzz targets. You may use it to execute a fuzz target on given files w/o having to link in libFuzzer or other fuzzing engine.
* [do_stuff_test_data](do_stuff_test_data): corpus directory for [do_stuff_fuzzer.cpp](do_stuff_fuzzer.cpp).
-* [do_stuff.dict](do_stuff.dict): [fuzzing dictionary file](http://libfuzzer.info#dictionaries) for `DoStuff()`. Optional, but may improve fuzzing in many cases.
+* [do_stuff.dict](do_stuff.dict): a [fuzzing dictionary file](http://libfuzzer.info#dictionaries) for `DoStuff()`. Optional, but may improve fuzzing in many cases.
* [Makefile](Makefile): is a build file (the same can be done with other build systems):
* accepts external compiler flags via `$CC`, `$CXX`, `$CFLAGS`, `$CXXFLAGS`
* accepts external fuzzing engine via `$LIB_FUZZING_ENGINE`, by default uses [standalone_fuzz_taget_runner.cpp](standalone_fuzz_taget_runner.cpp)