Michele Caini 4 лет назад
Родитель
Сommit
fbab047d7f
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      docs/md/meta.md

+ 1 - 1
docs/md/meta.md

@@ -328,7 +328,7 @@ Furthermore, all them are also returned by specific overloads that provide the
 caller with iterable ranges of top-level elements. As an example:
 
 ```cpp
-for(auto data = entt::resolve<my_type>().data()) {
+for(auto data: entt::resolve<my_type>().data()) {
     // ...
 }
 ```