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.");