diff options
author | Xeonacid <h.dwwwwww@gmail.com> | 2024-01-11 15:42:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-11 08:42:51 +0100 |
commit | f75778adfb0fbea570a94b43eff801eb6d996f79 (patch) | |
tree | 85b0976b5879de78ba57cbd365bf95f93f25ded8 | |
parent | db65dc5a0b5174f6eb22befee6dbc703092ff168 (diff) | |
download | afl++-f75778adfb0fbea570a94b43eff801eb6d996f79.tar.gz |
docs(custom_mutators): fix missing ':' (#1953)
-rw-r--r-- | docs/custom_mutators.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/custom_mutators.md b/docs/custom_mutators.md index ce0a42dc..73e3c802 100644 --- a/docs/custom_mutators.md +++ b/docs/custom_mutators.md @@ -73,7 +73,7 @@ def init(seed): def fuzz_count(buf): return cnt -def splice_optout() +def splice_optout(): pass def fuzz(buf, add_buf, max_size): |