about summary refs log tree commit diff
path: root/docs/fuzzing_in_depth.md
diff options
context:
space:
mode:
authorJoshua Rogers <jrogers@opera.com>2022-01-03 16:47:33 +0100
committerJoshua Rogers <jrogers@opera.com>2022-01-03 16:47:33 +0100
commit845c32b5fb05479f989a74c9c6d7157b9e6e8b9c (patch)
treef065176fc1cd4860b92d57102421d3b9a3cbbb09 /docs/fuzzing_in_depth.md
parentee57053be1dfada42377d8a4c2f7583b557e52b4 (diff)
downloadafl++-845c32b5fb05479f989a74c9c6d7157b9e6e8b9c.tar.gz
Fix typo.
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 65a6de3d..c926d59e 100644
--- a/docs/fuzzing_in_depth.md
+++ b/docs/fuzzing_in_depth.md
@@ -203,7 +203,7 @@ The following sanitizers have built-in support in AFL++:
   of the target source code where you find a leak check necessary! Enabled with
   `export AFL_USE_LSAN=1` before compiling. To ignore the memory-leaking check
   for certain allocations, `__AFL_LSAN_OFF();` can be used before memory is 
-  allocated, and `__AFL_LSAN_OFF;` afterwards. Memory allocated between these
+  allocated, and `__AFL_LSAN_ON();` afterwards. Memory allocated between these
   two macros will not be checked for memory leaks.
 
 It is possible to further modify the behavior of the sanitizers at run-time by