summaryrefslogtreecommitdiff
path: root/lib/fuzzer/FuzzerMutate.h
diff options
context:
space:
mode:
authorSylvestre Ledru <sylvestre@debian.org>2018-03-13 14:35:10 +0000
committerSylvestre Ledru <sylvestre@debian.org>2018-03-13 14:35:10 +0000
commite24370110c39773a6d068a34676c7123f66ee1bc (patch)
tree15281f6b28c0b167ec718607df24986ea9ec7a86 /lib/fuzzer/FuzzerMutate.h
parent4c895bfe35adea9996ffe603d7ca215fb7e6d1ef (diff)
fix some user facing typos / in the comments
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@327402 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/fuzzer/FuzzerMutate.h')
-rw-r--r--lib/fuzzer/FuzzerMutate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/fuzzer/FuzzerMutate.h b/lib/fuzzer/FuzzerMutate.h
index 4aa58af99..996d756cd 100644
--- a/lib/fuzzer/FuzzerMutate.h
+++ b/lib/fuzzer/FuzzerMutate.h
@@ -27,7 +27,7 @@ public:
void StartMutationSequence();
/// Print the current sequence of mutations.
void PrintMutationSequence();
- /// Indicate that the current sequence of mutations was successfull.
+ /// Indicate that the current sequence of mutations was successful.
void RecordSuccessfulMutationSequence();
/// Mutates data by invoking user-provided mutator.
size_t Mutate_Custom(uint8_t *Data, size_t Size, size_t MaxSize);
@@ -125,7 +125,7 @@ private:
// recreated periodically.
Dictionary TempAutoDictionary;
// Persistent dictionary modified by the fuzzer, consists of
- // entries that led to successfull discoveries in the past mutations.
+ // entries that led to successful discoveries in the past mutations.
Dictionary PersistentAutoDictionary;
Vector<Mutator> CurrentMutatorSequence;