From 04e5939c8d24c1b1c518e64d48aca85777dcf091 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 31 Jan 2019 18:37:41 -0500 Subject: [PATCH] Fix spelling --- misc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.