Skip to content

Commit 1bd433b

Browse files
committed
[compiler-rt][NFC] Fix typo in comment
1 parent 530bc22 commit 1bd433b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler-rt/lib/fuzzer/FuzzerMutate.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ class MutationDispatcher {
4343
size_t Mutate_InsertByte(uint8_t *Data, size_t Size, size_t MaxSize);
4444
/// Mutates data by inserting several repeated bytes.
4545
size_t Mutate_InsertRepeatedBytes(uint8_t *Data, size_t Size, size_t MaxSize);
46-
/// Mutates data by chanding one byte.
46+
/// Mutates data by changing one byte.
4747
size_t Mutate_ChangeByte(uint8_t *Data, size_t Size, size_t MaxSize);
48-
/// Mutates data by chanding one bit.
48+
/// Mutates data by changing one bit.
4949
size_t Mutate_ChangeBit(uint8_t *Data, size_t Size, size_t MaxSize);
5050
/// Mutates data by copying/inserting a part of data into a different place.
5151
size_t Mutate_CopyPart(uint8_t *Data, size_t Size, size_t MaxSize);

0 commit comments

Comments
 (0)