aboutsummaryrefslogtreecommitdiffstats
path: root/include/jau
diff options
context:
space:
mode:
Diffstat (limited to 'include/jau')
-rw-r--r--include/jau/cow_darray.hpp2
-rw-r--r--include/jau/cow_iterator.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/jau/cow_darray.hpp b/include/jau/cow_darray.hpp
index 1a1eee6..4e258cc 100644
--- a/include/jau/cow_darray.hpp
+++ b/include/jau/cow_darray.hpp
@@ -169,7 +169,7 @@ namespace jau {
* </p>
* <p>
* Due to the costly nature of mutable CoW resource management,
- * consider using jau::cow_rw_iterator if elements won't get mutated
+ * consider using jau::cow_ro_iterator if elements won't get mutated
* or any changes can be discarded.
* </p>
* @see jau::cow_rw_iterator
diff --git a/include/jau/cow_iterator.hpp b/include/jau/cow_iterator.hpp
index 19661d8..a8632cb 100644
--- a/include/jau/cow_iterator.hpp
+++ b/include/jau/cow_iterator.hpp
@@ -100,7 +100,7 @@ namespace jau {
* </p>
* <p>
* Due to the costly nature of mutable CoW resource management,
- * consider using jau::cow_rw_iterator if elements won't get mutated
+ * consider using jau::cow_ro_iterator if elements won't get mutated
* or any changes can be discarded.
* </p>
* <p>