diff options
author | Sven Gothel <[email protected]> | 2021-01-07 18:05:53 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2021-01-07 18:05:53 +0100 |
commit | cfb309ec3ab1bf7b5e396e21f93fdbf94fc57966 (patch) | |
tree | 80d44ecab82aec5d918925612e50ac6eddcf6bb0 /include/jau/cow_darray.hpp | |
parent | da6e5553fc968465f930374c8fb661f17f107874 (diff) |
cow_darray API doc semantic typo: It is cow_ro_iterator to be considered and favored over cow_rw_iterator for immutable or throw-away changed data
Diffstat (limited to 'include/jau/cow_darray.hpp')
-rw-r--r-- | include/jau/cow_darray.hpp | 2 |
1 files changed, 1 insertions, 1 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 |