From 3a92187ad7c54fba865ed87be3f6131acbb71a7b Mon Sep 17 00:00:00 2001 From: Kostya Serebryany Date: Thu, 8 Dec 2016 09:57:58 -0800 Subject: [PATCH] Update new_project_guide.md --- docs/new_project_guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/new_project_guide.md b/docs/new_project_guide.md index 9794710c8..5e8c47097 100644 --- a/docs/new_project_guide.md +++ b/docs/new_project_guide.md @@ -80,8 +80,8 @@ In general, this script will need to: 1. Please don't assume that the fuzzing engine is libFuzzer and hardcode in your build scripts. In future, we will add support for other fuzzing engines like AFL. So, link the fuzzing engine using `-lFuzzingEngine`, see example below. -2. Please make sure that the binary names for your [fuzz targets](glossary.md#fuzz-target) contain only contain -alphanumeric characters, underscore(_) or dash(-). Otherwise, they won't run on the our infrastructure. +2. Please make sure that the binary names for your [fuzz targets](glossary.md#fuzz-target) contain only +alphanumeric characters, underscore(_) or dash(-). Otherwise, they won't run on our infrastructure. For expat, this looks like [this](https://github.com/google/oss-fuzz/blob/master/projects/expat/build.sh):