Quellcode durchsuchen

doc: fixed typo

Michele Caini vor 7 Jahren
Ursprung
Commit
69c514d1a4
1 geänderte Dateien mit 3 neuen und 2 gelöschten Zeilen
  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.
 
 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
 registry.view<position>([&](auto entity, auto &pos) {
     registry.assign<position>(registry.create(), 0., 0.);
-    position.x = 0.; // warning: dangling pointer
+    pos.x = 0.; // warning: dangling pointer
 });
 ```