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-04 20:59:39 +0100
committerllzmb <46303940+llzmb@users.noreply.github.com>2021-12-04 20:59:39 +0100
commitae59ed8e9e3a3f6ad66446369099977ced8d67b0 (patch)
treea7f7b579475a5d6a94ca5c4800db749596a34a51 /docs/custom_mutators.md
parent8d696c93968a31133ef917810295aaf399b066ff (diff)
downloadafl++-ae59ed8e9e3a3f6ad66446369099977ced8d67b0.tar.gz
Fix typos - 2nd run
Diffstat (limited to 'docs/custom_mutators.md')
-rw-r--r--docs/custom_mutators.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/custom_mutators.md b/docs/custom_mutators.md
index 2a77db82..0e94ab10 100644
--- a/docs/custom_mutators.md
+++ b/docs/custom_mutators.md
@@ -1,7 +1,7 @@
 # Custom Mutators in AFL++
 
 This file describes how you can implement custom mutations to be used in AFL.
-For now, we support C/C++ library and Python module, collectivelly named as the
+For now, we support C/C++ library and Python module, collectively named as the
 custom mutator.
 
 There is also experimental support for Rust in `custom_mutators/rust`. For
@@ -272,7 +272,7 @@ For C/C++ mutators, the source code must be compiled as a shared object:
 gcc -shared -Wall -O3 example.c -o example.so
 ```
 Note that if you specify multiple custom mutators, the corresponding functions
-will be called in the order in which they are specified. e.g first
+will be called in the order in which they are specified. e.g. first
 `post_process` function of `example_first.so` will be called and then that of
 `example_second.so`.