[compiler-rt] 8b3d392 - [libFuzzer] Fix typo in seed_inputs flag description. NFC.
Marek Kurdej via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 9 04:54:43 PDT 2020
Author: Marek Kurdej
Date: 2020-04-09T13:54:07+02:00
New Revision: 8b3d3921b0684dd71b7486c01a447fdb378c2ac3
URL: https://github.com/llvm/llvm-project/commit/8b3d3921b0684dd71b7486c01a447fdb378c2ac3
DIFF: https://github.com/llvm/llvm-project/commit/8b3d3921b0684dd71b7486c01a447fdb378c2ac3.diff
LOG: [libFuzzer] Fix typo in seed_inputs flag description. NFC.
Added:
Modified:
compiler-rt/lib/fuzzer/FuzzerFlags.def
Removed:
################################################################################
diff --git a/compiler-rt/lib/fuzzer/FuzzerFlags.def b/compiler-rt/lib/fuzzer/FuzzerFlags.def
index a67415743032..d2aaf24587d2 100644
--- a/compiler-rt/lib/fuzzer/FuzzerFlags.def
+++ b/compiler-rt/lib/fuzzer/FuzzerFlags.def
@@ -22,7 +22,7 @@ FUZZER_FLAG_INT(len_control, 100, "Try generating small inputs first, "
"size up to max_len. Default value is 0, if LLVMFuzzerCustomMutator is used.")
FUZZER_FLAG_STRING(seed_inputs, "A comma-separated list of input files "
"to use as an additional seed corpus. Alternatively, an \"@\" followed by "
- "the name of a file containing the comma-seperated list.")
+ "the name of a file containing the comma-separated list.")
FUZZER_FLAG_INT(cross_over, 1, "If 1, cross over inputs.")
FUZZER_FLAG_INT(mutate_depth, 5,
"Apply this number of consecutive mutations to each input.")
More information about the llvm-commits
mailing list