From 5517d3b80b136b4afc7097147397d03bb840403a Mon Sep 17 00:00:00 2001 From: Max Moroz Date: Tue, 25 Feb 2020 17:10:16 -0800 Subject: [PATCH] [compiler-rt] Fix a typo in a comment in FuzzedDataProvider.h. --- compiler-rt/include/fuzzer/FuzzedDataProvider.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/include/fuzzer/FuzzedDataProvider.h b/compiler-rt/include/fuzzer/FuzzedDataProvider.h index b0a37737af75..bdeff21b1294 100644 --- a/compiler-rt/include/fuzzer/FuzzedDataProvider.h +++ b/compiler-rt/include/fuzzer/FuzzedDataProvider.h @@ -304,7 +304,7 @@ class FuzzedDataProvider { if (std::numeric_limits::is_modulo) return static_cast(value); - // Avoid using implementation-defined unsigned to signer conversions. + // Avoid using implementation-defined unsigned to signed conversions. // To learn more, see https://stackoverflow.com/questions/13150449. if (value <= std::numeric_limits::max()) { return static_cast(value);