From 768234b07736dc70d2ce2681415512b239cb75cf Mon Sep 17 00:00:00 2001 From: Hanhan Wang Date: Fri, 9 Apr 2021 01:56:45 -0700 Subject: [PATCH] [NFC] Fix a typo in ScalarLimit comments. PiperOrigin-RevId: 367593932 --- include/mlir-hlo/utils/hlo_utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mlir-hlo/utils/hlo_utils.h b/include/mlir-hlo/utils/hlo_utils.h index ca00bb6..91c32ec 100644 --- a/include/mlir-hlo/utils/hlo_utils.h +++ b/include/mlir-hlo/utils/hlo_utils.h @@ -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::lowest. - kInfinityLowest, // Like kMax, but returns -infinity where available. + kInfinityLowest, // Like kLowest, but returns -infinity where available. kMax, // The scalar corresponding to numeric_limits::max. kInfinityMax, // Like kMax, but returns infinity where available. };