From de1fb4935b8787833bd05f92a66626b8471930ba Mon Sep 17 00:00:00 2001 From: Ricardo Antunes Date: Tue, 5 Sep 2023 17:22:30 +0100 Subject: [PATCH] docs(core): change class to struct in Reflect --- core/include/cubos/core/reflection/reflect.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/include/cubos/core/reflection/reflect.hpp b/core/include/cubos/core/reflection/reflect.hpp index 93bdce29dd..75b8c6be7b 100644 --- a/core/include/cubos/core/reflection/reflect.hpp +++ b/core/include/cubos/core/reflection/reflect.hpp @@ -18,7 +18,7 @@ namespace cubos::core::reflection /// /// To implement reflection for your type, you should either: /// - Define a static member function `reflect` with return type `const Type&` on your type. - /// - Specialize this class for your type. + /// - Specialize this struct for your type. /// /// The first option is preferred, as it is less verbose. However, when handling external /// types, to which member functions cannot be added, the second option is necessary.