We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 735d27d commit 5517d3bCopy full SHA for 5517d3b
compiler-rt/include/fuzzer/FuzzedDataProvider.h
@@ -304,7 +304,7 @@ class FuzzedDataProvider {
304
if (std::numeric_limits<TS>::is_modulo)
305
return static_cast<TS>(value);
306
307
- // Avoid using implementation-defined unsigned to signer conversions.
+ // Avoid using implementation-defined unsigned to signed conversions.
308
// To learn more, see https://stackoverflow.com/questions/13150449.
309
if (value <= std::numeric_limits<TS>::max()) {
310
0 commit comments