about summary refs log tree commit diff
path: root/docs
diff options
context:
space:
mode:
authorllzmb <46303940+llzmb@users.noreply.github.com>2021-12-04 19:42:47 +0100
committerllzmb <46303940+llzmb@users.noreply.github.com>2021-12-04 19:42:47 +0100
commit13eedcd5e8128419ae1b3e04d56a775eeea6f471 (patch)
tree3081d811d4b57cef13ff099378d8baf8d99704dc /docs
parent0594bcb0cbefcb5e99f101800d4bd0b89f6689f1 (diff)
downloadafl++-13eedcd5e8128419ae1b3e04d56a775eeea6f471.tar.gz
Fix punctuation in connection with "etc."
Diffstat (limited to 'docs')
-rw-r--r--docs/afl-fuzz_approach.md2
-rw-r--r--docs/fuzzing_in_depth.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/afl-fuzz_approach.md b/docs/afl-fuzz_approach.md
index 702e020d..fefde029 100644
--- a/docs/afl-fuzz_approach.md
+++ b/docs/afl-fuzz_approach.md
@@ -523,7 +523,7 @@ into each of them or deploy scripts to read the fuzzer statistics. Using
 to your favorite StatsD server. Depending on your StatsD server, you will be
 able to monitor, trigger alerts, or perform actions based on these metrics (e.g:
 alert on slow exec/s for a new build, threshold of crashes, time since last
-crash > X, etc).
+crash > X, etc.).
 
 The selected metrics are a subset of all the metrics found in the status and in
 the plot file. The list is the following: `cycle_done`, `cycles_wo_finds`,
diff --git a/docs/fuzzing_in_depth.md b/docs/fuzzing_in_depth.md
index 011ba783..d408aa91 100644
--- a/docs/fuzzing_in_depth.md
+++ b/docs/fuzzing_in_depth.md
@@ -722,7 +722,7 @@ just for AFL++).
 Here are some of the most important caveats for AFL++:
 
 - AFL++ detects faults by checking for the first spawned process dying due to a
-  signal (SIGSEGV, SIGABRT, etc). Programs that install custom handlers for
+  signal (SIGSEGV, SIGABRT, etc.). Programs that install custom handlers for
   these signals may need to have the relevant code commented out. In the same
   vein, faults in child processes spawned by the fuzzed target may evade
   detection unless you manually add some code to catch that.