src/cx/list.h

changeset 744
937f8b5d4a3f
parent 741
1210ee2d755f
child 759
475335643af4
     1.1 --- a/src/cx/list.h	Fri Jul 07 18:33:11 2023 +0200
     1.2 +++ b/src/cx/list.h	Fri Jul 07 18:43:11 2023 +0200
     1.3 @@ -77,7 +77,7 @@
     1.4      void (*destructor)(struct cx_list_s *list);
     1.5  
     1.6      /**
     1.7 -     * Member function for inserting a single elements.
     1.8 +     * Member function for inserting a single element.
     1.9       * Implementors SHOULD see to performant implementations for corner cases.
    1.10       */
    1.11      int (*insert_element)(
    1.12 @@ -145,7 +145,7 @@
    1.13      );
    1.14  
    1.15      /**
    1.16 -     * Member function for sorting the list in place.
    1.17 +     * Member function for sorting the list in-place.
    1.18       */
    1.19      void (*sort)(struct cx_list_s *list);
    1.20  
    1.21 @@ -584,7 +584,7 @@
    1.22  }
    1.23  
    1.24  /**
    1.25 - * Sorts the list in place.
    1.26 + * Sorts the list in-place.
    1.27   *
    1.28   * \remark The underlying sort algorithm is implementation defined.
    1.29   *

mercurial