Browse Source

fixed typo

Michele Caini 7 years ago
parent
commit
f30fe3c746
2 changed files with 4 additions and 2 deletions
  1. 2 0
      TODO
  2. 2 2
      docs/entity.md

+ 2 - 0
TODO

@@ -20,4 +20,6 @@
   - each components only return actual component, so shared components are returned only once
   - each components only return actual component, so shared components are returned only once
 * types defined at runtime that refer to the same compile-time type (but to different pools) are possible, the library is almost there
 * types defined at runtime that refer to the same compile-time type (but to different pools) are possible, the library is almost there
 * add take functionality, eg registry.take(entity, other); where it takes the entity and all its components from registry and move them to other
 * add take functionality, eg registry.take(entity, other); where it takes the entity and all its components from registry and move them to other
+* add entity function to views/groups (component -> owner, see sparse sets)
+* what about paged pools? vector of fixed-size blocks
 * add unset for context variables
 * add unset for context variables

+ 2 - 2
docs/entity.md

@@ -99,8 +99,8 @@ many others besides me.
 directly access all the instances of a given component type `T`.<br/>
 directly access all the instances of a given component type `T`.<br/>
 This was a guideline and a design decision that influenced many choices, for
 This was a guideline and a design decision that influenced many choices, for
 better and for worse. I cannot say whether it will be useful or not to the
 better and for worse. I cannot say whether it will be useful or not to the
-reader, but it's worth to mention it, because it's of the corner stones of this
-library.
+reader, but it's worth to mention it, because it's one of the corner stones of
+this library.
 
 
 Many of the tools described below, from the registry to the views and up to the
 Many of the tools described below, from the registry to the views and up to the
 groups give the possibility to get this information and have been designed
 groups give the possibility to get this information and have been designed