diff options
author | llzmb <46303940+llzmb@users.noreply.github.com> | 2021-12-02 21:03:59 +0100 |
---|---|---|
committer | llzmb <46303940+llzmb@users.noreply.github.com> | 2021-12-02 21:11:01 +0100 |
commit | 65c3db86256b3907404623fe1c52e01c9d12ff97 (patch) | |
tree | 8cb2d3b063980a9ea7bf4f42806d83e3f6134355 /docs/custom_mutators.md | |
parent | a7694e299a331bd8c4826b2402ee68cd6f83d8f9 (diff) | |
download | afl++-65c3db86256b3907404623fe1c52e01c9d12ff97.tar.gz |
Fix punctuation in connection with "e.g."
Diffstat (limited to 'docs/custom_mutators.md')
-rw-r--r-- | docs/custom_mutators.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/custom_mutators.md b/docs/custom_mutators.md index fc5ecbf9..6bee5413 100644 --- a/docs/custom_mutators.md +++ b/docs/custom_mutators.md @@ -124,7 +124,7 @@ def deinit(): # optional for Python additional test case. Note that this function is optional - but it makes sense to use it. You would only skip this if `post_process` is used to fix checksums etc. - so if you are using it e.g. as a post processing library. + so if you are using it, e.g., as a post processing library. Note that a length > 0 *must* be returned! - `describe` (optional): @@ -191,8 +191,9 @@ trimmed input. Here's a quick API description: This method is called at the start of each trimming operation and receives the initial buffer. It should return the amount of iteration steps possible - on this input (e.g. if your input has n elements and you want to remove them - one by one, return n, if you do a binary search, return log(n), and so on). + on this input (e.g., if your input has n elements and you want to remove + them one by one, return n, if you do a binary search, return log(n), and so + on). If your trimming algorithm doesn't allow to determine the amount of (remaining) steps easily (esp. while running), then you can alternatively |