diff options
author | Tobias Nießen <tniessen@tnie.de> | 2022-03-15 17:13:08 -0700 |
---|---|---|
committer | Vitaly Buka <vitalybuka@google.com> | 2022-03-15 17:19:20 -0700 |
commit | eaafa7001723e1567b55cea1715c1acb12f292ee (patch) | |
tree | fcdfd6d208e8087c0abdac81f4100f022f1d73d0 | |
parent | 89cd86bbc58afe7d036bdb2f656dca38b62d8ef0 (diff) | |
download | llvm-eaafa7001723e1567b55cea1715c1acb12f292ee.zip llvm-eaafa7001723e1567b55cea1715c1acb12f292ee.tar.gz llvm-eaafa7001723e1567b55cea1715c1acb12f292ee.tar.bz2 |
[libfuzzer] improve introductory sentence
This merely adds a missing "an" in the introductory sentence.
Reviewed By: vitalybuka
Differential Revision: https://reviews.llvm.org/D121760
-rw-r--r-- | llvm/docs/LibFuzzer.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/LibFuzzer.rst b/llvm/docs/LibFuzzer.rst index 0341e8e..d437460 100644 --- a/llvm/docs/LibFuzzer.rst +++ b/llvm/docs/LibFuzzer.rst @@ -8,7 +8,7 @@ libFuzzer – a library for coverage-guided fuzz testing. Introduction ============ -LibFuzzer is in-process, coverage-guided, evolutionary fuzzing engine. +LibFuzzer is an in-process, coverage-guided, evolutionary fuzzing engine. LibFuzzer is linked with the library under test, and feeds fuzzed inputs to the library via a specific fuzzing entrypoint (aka "target function"); the fuzzer |