summaryrefslogtreecommitdiffstats
path: root/raul/Table.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'raul/Table.hpp')
-rw-r--r--raul/Table.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/raul/Table.hpp b/raul/Table.hpp
index 9fd672a..1d20a9c 100644
--- a/raul/Table.hpp
+++ b/raul/Table.hpp
@@ -29,7 +29,7 @@ namespace Raul {
/** Slow insertion, fast lookup, cache optimized, super fast sorted iteration.
*
* This has the advantage over std::map that iterating over the collection
- * is super fast, and iteration is sorted. Probably also faster due to all
+ * is fast and sorted. Possibly also faster in some situations due to all
* data being in a single chunk of memory, cache optimized, etc.
*/
template <typename K, typename T>