diff --git a/misc.h b/misc.h index 8405893a..67e399d4 100644 --- a/misc.h +++ b/misc.h @@ -913,7 +913,7 @@ inline bool IsPowerOf2(const word64 &value) /// \details NumericLimitsMin() was introduced for Clang at Issue 364, /// Apple Clang 6.0 and numeric_limits::max() returns 0. -/// \detials NumericLimitsMin() requires a specialization for T, +/// \details NumericLimitsMin() requires a specialization for T, /// meaning std::numeric_limits::is_specialized must return /// true. In the case of word128 Clang did not specialize /// numeric_limits for the type. @@ -931,7 +931,7 @@ inline T NumericLimitsMin() /// \details NumericLimitsMax() was introduced for Clang at Issue 364, /// Apple Clang 6.0 and numeric_limits::max() returns 0. -/// \detials NumericLimitsMax() requires a specialization for T, +/// \details NumericLimitsMax() requires a specialization for T, /// meaning std::numeric_limits::is_specialized must return /// true. In the case of word128 Clang did not specialize /// numeric_limits for the type.