about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--custom_mutators/libfuzzer/FuzzerBuiltins.h2
-rw-r--r--custom_mutators/libfuzzer/FuzzerBuiltinsMsvc.h2
-rw-r--r--custom_mutators/libfuzzer/README.md2
-rw-r--r--custom_mutators/symcc/symcc.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/custom_mutators/libfuzzer/FuzzerBuiltins.h b/custom_mutators/libfuzzer/FuzzerBuiltins.h
index 4c0ada82..7330c9d3 100644
--- a/custom_mutators/libfuzzer/FuzzerBuiltins.h
+++ b/custom_mutators/libfuzzer/FuzzerBuiltins.h
@@ -5,7 +5,7 @@
 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 //
 //===----------------------------------------------------------------------===//
-// Wrapper functions and marcos around builtin functions.
+// Wrapper functions and macros around builtin functions.
 //===----------------------------------------------------------------------===//
 
 #ifndef LLVM_FUZZER_BUILTINS_H
diff --git a/custom_mutators/libfuzzer/FuzzerBuiltinsMsvc.h b/custom_mutators/libfuzzer/FuzzerBuiltinsMsvc.h
index c5bec978..6754577c 100644
--- a/custom_mutators/libfuzzer/FuzzerBuiltinsMsvc.h
+++ b/custom_mutators/libfuzzer/FuzzerBuiltinsMsvc.h
@@ -5,7 +5,7 @@
 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 //
 //===----------------------------------------------------------------------===//
-// Wrapper functions and marcos that use intrinsics instead of builtin functions
+// Wrapper functions and macros that use intrinsics instead of builtin functions
 // which cannot be compiled by MSVC.
 //===----------------------------------------------------------------------===//
 
diff --git a/custom_mutators/libfuzzer/README.md b/custom_mutators/libfuzzer/README.md
index 4783f2ca..fb3025f2 100644
--- a/custom_mutators/libfuzzer/README.md
+++ b/custom_mutators/libfuzzer/README.md
@@ -6,7 +6,7 @@ just type `make` to build
 
 ```AFL_CUSTOM_MUTATOR_LIBRARY=custom_mutators/libfuzzer/libfuzzer-mutator.so afl-fuzz ...```
 
-Note that is is currently simple and is missing two features:
+Note that this is currently a simple implementation and it is missing two features:
   * Splicing ("Crossover")
   * Dictionary support
 
diff --git a/custom_mutators/symcc/symcc.c b/custom_mutators/symcc/symcc.c
index 6f14052f..18b475b8 100644
--- a/custom_mutators/symcc/symcc.c
+++ b/custom_mutators/symcc/symcc.c
@@ -172,7 +172,7 @@ uint32_t afl_custom_fuzz_count(my_mutator_t *data, const u8 *buf,
 
 }
 
-/* here we actualy just read the files generated from symcc */
+/* here we actually just read the files generated from symcc */
 size_t afl_custom_fuzz(my_mutator_t *data, uint8_t *buf, size_t buf_size,
                        u8 **out_buf, uint8_t *add_buf, size_t add_buf_size,
                        size_t max_size) {