Docfix
authorkhizmax <libcds.dev@gmail.com>
Fri, 16 Sep 2016 21:36:07 +0000 (00:36 +0300)
committerkhizmax <libcds.dev@gmail.com>
Fri, 16 Sep 2016 21:36:07 +0000 (00:36 +0300)
cds/intrusive/split_list.h
cds/intrusive/split_list_rcu.h

index 7f3892bb9427aceacace375d8a4c64604953d454..f096b2d4ffb9e695ecd5de9de9aecf9a5bd3738d 100644 (file)
@@ -92,11 +92,10 @@ namespace cds { namespace intrusive {
         Template parameters are:
         - \p GC - Garbage collector. Note the \p GC must be the same as the \p GC used for \p OrderedList
         - \p OrderedList - ordered list implementation used as a bucket for hash set, for example, \p MichaelList, \p LazyList.
-            The intrusive ordered list implementation specifies the type \p T stored in the split-list set, the reclamation
-            schema \p GC used by split-list set, the comparison functor for the type \p T and other features specific for
-            the ordered list. 
+            The intrusive ordered list implementation specifies the type \p T stored in the split-list set, the comparison
+            functor for the type \p T and other features specific for the ordered list.
         - \p Traits - split-list traits, default is \p split_list::traits.
-            Instead of defining \p Traits struct you may use option-based syntax with \p split_list::make_traits metafunction.
+            Instead of defining \p Traits struct you can use option-based syntax provided by \p split_list::make_traits metafunction.
 
         @warning \p IterableList is not supported as \p OrderedList template parameter.
 
index 17df965cdf362f77db60d9fe01e3b1528ad69364..73f05a26fd3a0d9058de5c727e5cccd82337c117 100644 (file)
@@ -59,7 +59,7 @@ namespace cds { namespace intrusive {
             The intrusive ordered list implementation specifies the type \p T stored in the hash-set,
             the comparing functor for the type \p T and other features specific for the ordered list.
         - \p Traits - set traits, default isd \p split_list::traits.
-            Instead of defining \p Traits struct you may use option-based syntax with \p split_list::make_traits metafunction.
+            Instead of defining \p Traits struct you can use option-based syntax provided by \p split_list::make_traits metafunction.
 
         @note About required features of hash functor see \ref cds_SplitList_hash_functor "SplitList general description".