Explorar el Código

doc: fixed typo

Michele Caini hace 5 años
padre
commit
44d6246278
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/entt/core/type_traits.hpp

+ 2 - 2
src/entt/core/type_traits.hpp

@@ -586,7 +586,7 @@ inline constexpr auto is_empty_v = is_empty<Type>::value;
  */
 template<typename To, typename From>
 struct constness_as {
-    /*! @brief The type resulting from the transcription of the constness */
+    /*! @brief The type resulting from the transcription of the constness. */
     using type = std::remove_const_t<To>;
 };
 
@@ -594,7 +594,7 @@ struct constness_as {
 /*! @copydoc constness_as */
 template<typename To, typename From>
 struct constness_as<To, const From> {
-    /*! @brief The type resulting from the transcription of the constness */
+    /*! @brief The type resulting from the transcription of the constness. */
     using type = std::add_const_t<To>;
 };