From 655f1dd9063a88e18ff2da22cea28d80d3eb3e3f Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Fri, 1 Jul 2022 18:56:02 +0200 Subject: [PATCH] doc: minor changes --- docs/md/entity.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/md/entity.md b/docs/md/entity.md index a9d867a00..7c11bf3db 100644 --- a/docs/md/entity.md +++ b/docs/md/entity.md @@ -731,8 +731,8 @@ There are two aliases that use `entt::entity` as their default entity: Users can also easily create their own aliases for custom identifiers as: ```cpp -using my_handle = entt::basic_handle; -using my_const_handle = entt::basic_handle; +using my_handle = entt::basic_handle>; +using my_const_handle = entt::basic_handle>; ``` Handles are also implicitly convertible to const handles out of the box but not @@ -773,7 +773,7 @@ organizer.emplace(+[](const void *, entt::registry &) { /* ... */ }); These are the parameters that a free function or a member function can accept: * A possibly constant reference to a registry. -* An `entt::basic_view` with any possible combination of types. +* An `entt::basic_view` with any possible combination of storage classes. * A possibly constant reference to any type `T` (that is, a context variable). The function type for free functions and decayed lambdas passed as parameters to