diff options
Diffstat (limited to 'docs/LibFuzzer.rst')
-rw-r--r-- | docs/LibFuzzer.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/LibFuzzer.rst b/docs/LibFuzzer.rst index 47bdfd3a27d0..1ac75a406985 100644 --- a/docs/LibFuzzer.rst +++ b/docs/LibFuzzer.rst @@ -112,7 +112,7 @@ Here we show how to use lib/Fuzzer on something real, yet simple: pcre2_:: (cd pcre; ./autogen.sh; CC="clang -fsanitize=address $COV_FLAGS" ./configure --prefix=`pwd`/../inst && make -j && make install) # Build lib/Fuzzer files. clang -c -g -O2 -std=c++11 Fuzzer/*.cpp -IFuzzer - # Build the the actual function that does something interesting with PCRE2. + # Build the actual function that does something interesting with PCRE2. cat << EOF > pcre_fuzzer.cc #include <string.h> #include "pcre2posix.h" |