# HG changeset patch # User Olaf Wintermann # Date 1688748063 -7200 # Node ID 1210ee2d755f0021ad83111262f96b11d33c2355 # Parent 378578666c83fd72564b29bb5cb3e0af686a31d2# Parent 54b1d577551bbb3061ae66d15dc852024b28de51 more doc fixes diff -r 378578666c83 -r 1210ee2d755f src/cx/hash_map.h --- a/src/cx/hash_map.h Fri Jul 07 18:29:00 2023 +0200 +++ b/src/cx/hash_map.h Fri Jul 07 18:41:03 2023 +0200 @@ -74,7 +74,7 @@ * cxMapStorePointers() was called immediately after creation. * * @note Iterators provided by this hash map implementation provide the remove operation. - * The index value of an iterator is the incremented when the iterator advanced without removal. + * The index value of an iterator is incremented when the iterator advanced without removal. * In other words, when the iterator is finished, \c index==size . * * @param allocator the allocator to use @@ -96,7 +96,7 @@ * cxMapStorePointers() was called immediately after creation. * * @note Iterators provided by this hash map implementation provide the remove operation. - * The index value of an iterator is the incremented when the iterator advanced without removal. + * The index value of an iterator is incremented when the iterator advanced without removal. * In other words, when the iterator is finished, \c index==size . * * @param itemsize the size of one element diff -r 378578666c83 -r 1210ee2d755f src/cx/list.h --- a/src/cx/list.h Fri Jul 07 18:29:00 2023 +0200 +++ b/src/cx/list.h Fri Jul 07 18:41:03 2023 +0200 @@ -145,7 +145,7 @@ ); /** - * Member function for sorting the list in place. + * Member function for sorting the list in-place. */ void (*sort)(struct cx_list_s *list); @@ -584,7 +584,7 @@ } /** - * Sorts the list in place. + * Sorts the list in-place. * * \remark The underlying sort algorithm is implementation defined. *