From 17d40e628a19532d15a566f1f2f09e15f65f0b96 Mon Sep 17 00:00:00 2001 From: Antonis Geralis Date: Wed, 14 Sep 2022 14:41:14 +0300 Subject: [PATCH] add note --- drchaos.nimble | 2 +- examples/fuzz_graph.nim | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/drchaos.nimble b/drchaos.nimble index 378acb6..67d6654 100644 --- a/drchaos.nimble +++ b/drchaos.nimble @@ -1,7 +1,7 @@ mode = ScriptMode.Verbose version = "0.1.9" -author = "Dr. Chaos Team" +author = "drchaos Team" description = "A powerful and easy-to-use fuzzing framework in Nim for C/C++/Obj-C targets" license = "Apache License 2.0" srcDir = "." diff --git a/examples/fuzz_graph.nim b/examples/fuzz_graph.nim index 9018e0d..43b1ca8 100644 --- a/examples/fuzz_graph.nim +++ b/examples/fuzz_graph.nim @@ -1,3 +1,4 @@ +# This example produces valid graphs, not garbage, without using graph library functions. when defined(runFuzzTests): const MaxNodes = 8 # User defined, statically limits number of nodes.