about summary refs log tree commit diff
path: root/docs/fuzzing_in_depth.md
diff options
context:
space:
mode:
authorllzmb <46303940+llzmb@users.noreply.github.com>2021-12-02 21:16:16 +0100
committerllzmb <46303940+llzmb@users.noreply.github.com>2021-12-02 21:16:16 +0100
commit377adb776ee2adb3cb17a174279e384ae9dd590c (patch)
tree9190a40981ce0082300ca1427d9f79d71228d72f /docs/fuzzing_in_depth.md
parent65c3db86256b3907404623fe1c52e01c9d12ff97 (diff)
downloadafl++-377adb776ee2adb3cb17a174279e384ae9dd590c.tar.gz
Change "eg" to "e.g." and fix punctuation
Diffstat (limited to 'docs/fuzzing_in_depth.md')
-rw-r--r--docs/fuzzing_in_depth.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/fuzzing_in_depth.md b/docs/fuzzing_in_depth.md
index 4e1e001e..7c464d81 100644
--- a/docs/fuzzing_in_depth.md
+++ b/docs/fuzzing_in_depth.md
@@ -175,7 +175,7 @@ The following sanitizers have built-in support in AFL++:
 * ASAN = Address SANitizer, finds memory corruption vulnerabilities like
   use-after-free, NULL pointer dereference, buffer overruns, etc. Enabled with
   `export AFL_USE_ASAN=1` before compiling.
-* MSAN = Memory SANitizer, finds read access to uninitialized memory, eg. a
+* MSAN = Memory SANitizer, finds read access to uninitialized memory, e.g., a
   local variable that is defined and read before it is even set. Enabled with
   `export AFL_USE_MSAN=1` before compiling.
 * UBSAN = Undefined Behavior SANitizer, finds instances where - by the C and C++