# HG changeset patch # User Olaf Wintermann # Date 1688747340 -7200 # Node ID 378578666c83fd72564b29bb5cb3e0af686a31d2 # Parent 529c35a768f3d4d50eac727514aba8862ba7722e fix iterator doc diff -r 529c35a768f3 -r 378578666c83 src/cx/iterator.h --- a/src/cx/iterator.h Fri Jul 07 18:20:07 2023 +0200 +++ b/src/cx/iterator.h Fri Jul 07 18:29:00 2023 +0200 @@ -204,13 +204,13 @@ /** * Iterator value type. - * An iterator points to a certain element in an (possibly unbounded) chain of elements. + * An iterator points to a certain element in a (possibly unbounded) chain of elements. * Iterators that are based on collections (which have a defined "first" element), are supposed * to be "position-aware", which means that they keep track of the current index within the collection. * * @note Objects that are pointed to by an iterator are always mutable through that iterator. However, * this iterator cannot mutate the collection itself (add or remove elements) and any mutation of the - * collection by other means make this iterator invalid (regardless of what cxIteratorValid() returns). + * collection by other means makes this iterator invalid (regardless of what cxIteratorValid() returns). * * @see CxMutIterator */