]> git.seodisparate.com - EntityComponentMetaSystem/commitdiff
Minor fixes to documentation
authorStephen Seo <seo.disparate@gmail.com>
Fri, 24 Nov 2017 06:06:57 +0000 (15:06 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Fri, 24 Nov 2017 06:06:57 +0000 (15:06 +0900)
src/EC/Manager.hpp

index 1c2a357f5537ba50c54da5d177958a923019b7be..93397fe9135f6fba8653f27c0bfb366f8e82ef88 100644 (file)
@@ -312,7 +312,7 @@ namespace EC
             <b>This function should be called periodically to correctly handle
             deletion of entities.</b>
 
-            The queue returned by this function lists all entities that have
+            The vector returned by this function lists all entities that have
             changed as a result of calling this function.
 
             The first parameter in the tuple (bool) is true if the entity has
@@ -363,7 +363,7 @@ namespace EC
                 {
                     // lhs is marked for deletion
 
-                    // store deleted and changed id to queue
+                    // store deleted and changed id
                     changedVector.push_back(std::make_tuple(false, lhs, 0));
                     changedVector.push_back(std::make_tuple(true, rhs, lhs));