Skip to content

Commit 5517d3b

Browse files
committed
[compiler-rt] Fix a typo in a comment in FuzzedDataProvider.h.
1 parent 735d27d commit 5517d3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/include/fuzzer/FuzzedDataProvider.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ class FuzzedDataProvider {
304304
if (std::numeric_limits<TS>::is_modulo)
305305
return static_cast<TS>(value);
306306

307-
// Avoid using implementation-defined unsigned to signer conversions.
307+
// Avoid using implementation-defined unsigned to signed conversions.
308308
// To learn more, see https://stackoverflow.com/questions/13150449.
309309
if (value <= std::numeric_limits<TS>::max()) {
310310
return static_cast<TS>(value);

0 commit comments

Comments
 (0)