Michele Caini 9 лет назад
Родитель
Сommit
4609789829
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -200,7 +200,7 @@ Exposed member functions are:
 * `operator++(int)`
 * `operator++(int)`
 * `operator==()`
 * `operator==()`
 * `operator!=()`
 * `operator!=()`
-* `operator*()`.
+* `operator*()`
 
 
 The single component view has an additional member function:
 The single component view has an additional member function:
 
 
@@ -247,7 +247,7 @@ A custom pool should expose at least the following member functions:
 * `bool has(entity_type entity) const noexcept;`
 * `bool has(entity_type entity) const noexcept;`
 * `const component_type & get(entity_type entity) const noexcept;`
 * `const component_type & get(entity_type entity) const noexcept;`
 * `component_type & get(entity_type entity) noexcept;`
 * `component_type & get(entity_type entity) noexcept;`
-* template<typename... Args> component_type & construct(entity_type entity, Args&&... args);`
+* `template<typename... Args> component_type & construct(entity_type entity, Args&&... args);`
 * `void destroy(entity_type entity);`
 * `void destroy(entity_type entity);`
 * `void reset();`
 * `void reset();`