[ADT] fix typo in code block comment; NFC

This commit is contained in:
Sanjay Patel 2021-04-29 10:43:11 -04:00
parent ded0a70aeb
commit f4b1272d3d
1 changed files with 1 additions and 1 deletions

View File

@ -2181,7 +2181,7 @@ inline const APInt &smax(const APInt &A, const APInt &B) {
return A.sgt(B) ? A : B;
}
/// Determine the smaller of two APInts considered to be signed.
/// Determine the smaller of two APInts considered to be unsigned.
inline const APInt &umin(const APInt &A, const APInt &B) {
return A.ult(B) ? A : B;
}