From 8deb7f96e74e62cd1d9fd8920debfbe27f4bb8d1 Mon Sep 17 00:00:00 2001 From: jimmyorourke Date: Fri, 7 May 2021 04:16:24 -0400 Subject: [PATCH] fix typo in comment (#81) --- include/magic_enum.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/magic_enum.hpp b/include/magic_enum.hpp index a0c8b4c..18c2804 100644 --- a/include/magic_enum.hpp +++ b/include/magic_enum.hpp @@ -135,7 +135,7 @@ static_assert(MAGIC_ENUM_RANGE_MAX < (std::numeric_limits::max)(), static_assert(MAGIC_ENUM_RANGE_MAX > MAGIC_ENUM_RANGE_MIN, "MAGIC_ENUM_RANGE_MAX must be greater than MAGIC_ENUM_RANGE_MIN."); -// If need cunstom names for enum, add specialization enum_name for necessary enum type. +// If need custom names for enum, add specialization enum_name for necessary enum type. template constexpr string_view enum_name(E) noexcept { static_assert(std::is_enum_v, "magic_enum::customize::enum_name requires enum type.");