more doc fixes

Fri, 07 Jul 2023 18:41:03 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Fri, 07 Jul 2023 18:41:03 +0200
changeset 741
1210ee2d755f
parent 740
378578666c83 (current diff)
parent 738
54b1d577551b (diff)
child 742
bcf788f3f6f5

more doc fixes

src/cx/list.h file | annotate | diff | comparison | revisions
     1.1 --- a/src/cx/hash_map.h	Fri Jul 07 18:29:00 2023 +0200
     1.2 +++ b/src/cx/hash_map.h	Fri Jul 07 18:41:03 2023 +0200
     1.3 @@ -74,7 +74,7 @@
     1.4   * cxMapStorePointers() was called immediately after creation.
     1.5   *
     1.6   * @note Iterators provided by this hash map implementation provide the remove operation.
     1.7 - * The index value of an iterator is the incremented when the iterator advanced without removal.
     1.8 + * The index value of an iterator is incremented when the iterator advanced without removal.
     1.9   * In other words, when the iterator is finished, \c index==size .
    1.10   *
    1.11   * @param allocator the allocator to use
    1.12 @@ -96,7 +96,7 @@
    1.13   * cxMapStorePointers() was called immediately after creation.
    1.14   *
    1.15   * @note Iterators provided by this hash map implementation provide the remove operation.
    1.16 - * The index value of an iterator is the incremented when the iterator advanced without removal.
    1.17 + * The index value of an iterator is incremented when the iterator advanced without removal.
    1.18   * In other words, when the iterator is finished, \c index==size .
    1.19   *
    1.20   * @param itemsize the size of one element
     2.1 --- a/src/cx/list.h	Fri Jul 07 18:29:00 2023 +0200
     2.2 +++ b/src/cx/list.h	Fri Jul 07 18:41:03 2023 +0200
     2.3 @@ -145,7 +145,7 @@
     2.4      );
     2.5  
     2.6      /**
     2.7 -     * Member function for sorting the list in place.
     2.8 +     * Member function for sorting the list in-place.
     2.9       */
    2.10      void (*sort)(struct cx_list_s *list);
    2.11  
    2.12 @@ -584,7 +584,7 @@
    2.13  }
    2.14  
    2.15  /**
    2.16 - * Sorts the list in place.
    2.17 + * Sorts the list in-place.
    2.18   *
    2.19   * \remark The underlying sort algorithm is implementation defined.
    2.20   *

mercurial