From 82b3668139b48c6ca667f51d3abc099116f29333 Mon Sep 17 00:00:00 2001 From: sigridsw Date: Wed, 4 Sep 2024 13:22:43 +0800 Subject: [PATCH] Fix libFuzzerTutorial.md typo --- tutorial/libFuzzerTutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial/libFuzzerTutorial.md b/tutorial/libFuzzerTutorial.md index 00bc539..55f49ed 100644 --- a/tutorial/libFuzzerTutorial.md +++ b/tutorial/libFuzzerTutorial.md @@ -392,7 +392,7 @@ In either way, you may want to minimize your corpus, that is to create a subset of the corpus that has the same coverage. ```shell -mkdir NEW_CORPPUS +mkdir NEW_CORPUS ./your-fuzzer NEW_CORPUS OLD_CORPUS -merge=1 ```