diff options
author | Manuel Carrasco <m.carrasco@imperial.ac.uk> | 2023-11-09 13:46:41 +0000 |
---|---|---|
committer | Manuel Carrasco <m.carrasco@imperial.ac.uk> | 2023-11-09 13:46:41 +0000 |
commit | 6f8696c3149a08d93c9b61db97f7b23cc6578274 (patch) | |
tree | 56d2b9106e6b56482594249cf3b63319588208e2 | |
parent | f3d2127fd815bed2ec9dfab981123898d11cea65 (diff) | |
download | afl++-6f8696c3149a08d93c9b61db97f7b23cc6578274.tar.gz |
Fix possible doc inconsistency for custom mutator's queue_get function.
-rw-r--r-- | docs/custom_mutators.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/custom_mutators.md b/docs/custom_mutators.md index c5a64622..1c4ab2cf 100644 --- a/docs/custom_mutators.md +++ b/docs/custom_mutators.md @@ -125,8 +125,9 @@ def deinit(): # optional for Python - `queue_get` (optional): - This method determines whether the custom fuzzer should fuzz the current - queue entry or not + This method determines whether AFL++ should fuzz the current + queue entry or not: all defined custom mutators as well as + all AFL++'s mutators. - `fuzz_count` (optional): |