From 0a4ee6d29517c0f3ad198c4c2043dc080f0a53e3 Mon Sep 17 00:00:00 2001 From: Kostya Serebryany Date: Mon, 21 Nov 2016 14:50:42 -0800 Subject: [PATCH] Update glossary.md --- docs/glossary.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/glossary.md b/docs/glossary.md index 33bf63635..bb818888c 100644 --- a/docs/glossary.md +++ b/docs/glossary.md @@ -10,7 +10,8 @@ A function to which we apply fuzzing. A [specific signature](libfuzzer.info#fuzz-target) must be used for OSS-Fuzz. Examples: [openssl](https://github.com/openssl/openssl/blob/master/fuzz/x509.c), [SQLite](https://www.sqlite.org/src/artifact/ad79e867fb504338), -[e2](https://github.com/google/re2/blob/master/re2/fuzzing/re2_fuzzer.cc). +[re2](https://github.com/google/re2/blob/master/re2/fuzzing/re2_fuzzer.cc). + A Fuzz Target can and should also be used for regression testing and for reproducing bug reports, see [ideal integration](ideal_integration.md).