Browse Source

Fixed const, non-const types section intro in entity.md (#589)

Zoltán Kurucz 5 years ago
parent
commit
14e051f970
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docs/md/entity.md

+ 2 - 2
docs/md/entity.md

@@ -1761,8 +1761,8 @@ function to know if a group can be sorted or not.
 ## Types: const, non-const and all in between
 
 The `registry` class offers two overloads when it comes to constructing views
-and groups: a const version and a non-const one. The former accepts both const
-and non-const types as template parameters, the latter accepts only const types
+and groups: a const version and a non-const one. The former accepts only const
+types as template parameters, the latter accepts both const and non-const types
 instead.<br/>
 It means that views and groups can be constructed from a const registry and they
 propagate the constness of the registry to the types involved. As an example: