about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--docs/env_variables.md8
-rw-r--r--docs/fuzzing_in_depth.md2
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/env_variables.md b/docs/env_variables.md
index 3f7bdadb..530e1342 100644
--- a/docs/env_variables.md
+++ b/docs/env_variables.md
@@ -607,14 +607,14 @@ the preferred way to configure FRIDA mode is through its
 * `AFL_FRIDA_INST_NO_BACKPATCH` - Disable backpatching. At the end of executing
   each block, control will return to FRIDA to identify the next block to
   execute.
-* `AFL_FRIDA_INST_NO_PREFETCH` - Disable prefetching. By default the child will
+* `AFL_FRIDA_INST_NO_PREFETCH` - Disable prefetching. By default, the child will
   report instrumented blocks back to the parent so that it can also instrument
   them and they be inherited by the next child on fork, implies
   `AFL_FRIDA_INST_NO_PREFETCH_BACKPATCH`.
 * `AFL_FRIDA_INST_NO_PREFETCH_BACKPATCH` - Disable prefetching of stalker
-  backpatching information. By default the child will report applied backpatches
-  to the parent so that they can be applied and then be inherited by the next
-  child on fork.
+  backpatching information. By default, the child will report applied
+  backpatches to the parent so that they can be applied and then be inherited by
+  the next child on fork.
 * `AFL_FRIDA_INST_RANGES` - See `AFL_QEMU_INST_RANGES`
 * `AFL_FRIDA_INST_SEED` - Sets the initial seed for the hash function used to
   generate block (and hence edge) IDs. Setting this to a constant value may be
diff --git a/docs/fuzzing_in_depth.md b/docs/fuzzing_in_depth.md
index 9611d6b7..d1fee7cc 100644
--- a/docs/fuzzing_in_depth.md
+++ b/docs/fuzzing_in_depth.md
@@ -465,7 +465,7 @@ handling in the target. Play around with various -m values until you find one
 that safely works for all your input seeds (if you have good ones and then
 double or quadruple that.
 
-By default afl-fuzz never stops fuzzing. To terminate AFL++, press Control-C or
+By default, afl-fuzz never stops fuzzing. To terminate AFL++, press Control-C or
 send a signal SIGINT. You can limit the number of executions or approximate
 runtime in seconds with options also.