[NFC] Fix a typo in ScalarLimit comments.

PiperOrigin-RevId: 367593932
This commit is contained in:
Hanhan Wang 2021-04-09 01:56:45 -07:00 committed by TensorFlow MLIR Team
parent bf487d51d4
commit 768234b077
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ DenseElementsAttr GetScalarOfType(Type ty, int64_t raw_value);
// Enum type used to specify scalar argument to GetScalarLimitOfType.
enum ScalarLimit {
kLowest, // The scalar corresponding to numeric_limits<T>::lowest.
kInfinityLowest, // Like kMax, but returns -infinity where available.
kInfinityLowest, // Like kLowest, but returns -infinity where available.
kMax, // The scalar corresponding to numeric_limits<T>::max.
kInfinityMax, // Like kMax, but returns infinity where available.
};