about summary refs log tree commit diff
path: root/docs/custom_mutators.md
diff options
context:
space:
mode:
authorllzmb <46303940+llzmb@users.noreply.github.com>2021-12-02 19:52:10 +0100
committerllzmb <46303940+llzmb@users.noreply.github.com>2021-12-02 19:52:10 +0100
commitb7395fa46710673602b8fb7257e502e5f129a56c (patch)
treec7ba9ea67e66d67b51d824413ec1ba87af72966b /docs/custom_mutators.md
parent3023a36d4d2d2f4549d637bd505ba9ebd743788b (diff)
downloadafl++-b7395fa46710673602b8fb7257e502e5f129a56c.tar.gz
Change "AFL" to "AFL++"
Diffstat (limited to 'docs/custom_mutators.md')
-rw-r--r--docs/custom_mutators.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/custom_mutators.md b/docs/custom_mutators.md
index 2caba560..3a2ec3b2 100644
--- a/docs/custom_mutators.md
+++ b/docs/custom_mutators.md
@@ -21,7 +21,8 @@ fuzzing by using libraries that perform mutations according to a given grammar.
 
 The custom mutator is passed to `afl-fuzz` via the `AFL_CUSTOM_MUTATOR_LIBRARY`
 or `AFL_PYTHON_MODULE` environment variable, and must export a fuzz function.
-Now AFL also supports multiple custom mutators which can be specified in the same `AFL_CUSTOM_MUTATOR_LIBRARY` environment variable like this.
+Now AFL++ also supports multiple custom mutators which can be specified in the
+same `AFL_CUSTOM_MUTATOR_LIBRARY` environment variable like this.
 ```bash
 export AFL_CUSTOM_MUTATOR_LIBRARY="full/path/to/mutator_first.so;full/path/to/mutator_second.so"
 ```