Michele Caini 7 лет назад
Родитель
Сommit
69c514d1a4
1 измененных файлов с 3 добавлено и 2 удалено
  1. 3 2
      docs/entity.md

+ 3 - 2
docs/entity.md

@@ -1242,12 +1242,13 @@ during iterations.<br/>
   components isn't allowed and can result in undefined behavior.
   components isn't allowed and can result in undefined behavior.
 
 
 In these cases, iterators aren't invalidated. To be clear, it doesn't mean that
 In these cases, iterators aren't invalidated. To be clear, it doesn't mean that
-also references will continue to be valid. Consider the following example:
+also references will continue to be valid.<br/>
+Consider the following example:
 
 
 ```cpp
 ```cpp
 registry.view<position>([&](auto entity, auto &pos) {
 registry.view<position>([&](auto entity, auto &pos) {
     registry.assign<position>(registry.create(), 0., 0.);
     registry.assign<position>(registry.create(), 0., 0.);
-    position.x = 0.; // warning: dangling pointer
+    pos.x = 0.; // warning: dangling pointer
 });
 });
 ```
 ```