doc: fixed typo

This commit is contained in:
Michele Caini
2020-11-17 10:28:31 +01:00
parent 90606bd410
commit 57e1bf3afd

View File

@@ -665,7 +665,7 @@ int value = 42;
// meta type equivalent to that of int *
entt::meta_any any{&value};
if(any.type().is_meta_pointer_like()) {
if(any.type().is_pointer_like()) {
// meta type equivalent to that of int
if(entt::meta_any ref = *any; ref) {
// ...