skypjack 4 місяців тому
батько
коміт
3fc5de2916
1 змінених файлів з 3 додано та 6 видалено
  1. 3 6
      docs/md/meta.md

+ 3 - 6
docs/md/meta.md

@@ -902,12 +902,9 @@ entt::meta_factory<my_type>{}.traits(my_traits::required | my_traits::hidden);
 
 In the example above, `EnTT` bitmask enum support is used, but any integral
 value is fine, as long as it does not exceed 16 bits.<br/>
-It is not possible to assign traits at different times. Therefore, multiple
-calls to the `traits` function overwrite previous values. However, traits can be
-read from meta objects and used to update existing data with a factory,
-effectively extending them as needed.<br/>
-Likewise, users can also set traits on meta objects later if needed, as long as
-the factory is reset to the meta object of interest:
+Traits can be assigned at different times. Subsequent calls to the `traits`
+function do not reset previously set values. However, users must reset the
+factory to the meta object of interest:
 
 ```cpp
 entt::meta_factory<my_type>{}