Removing trailing spaces
[libcds.git] / cds / container / striped_set.h
index 1eae6b91010a4da8db07670308b845f2ccf01dd0..1f142f0ca93f8dd97fa4bef4f7022d5088110649 100644 (file)
@@ -36,13 +36,13 @@ namespace cds { namespace container {
             - \p opt::mutex_policy - concurrent access policy.
                 Available policies: \p intrusive::striped_set::striping, \p intrusive::striped_set::refinable.
                 Default is \p %striped_set::striping.
-            - \p opt::hash - hash functor. Default option value see <tt>opt::v::hash_selector<opt::none> </tt> 
+            - \p opt::hash - hash functor. Default option value see <tt>opt::v::hash_selector<opt::none> </tt>
                 which selects default hash functor for your compiler.
             - \p opt::compare - key comparison functor. No default functor is provided.
                 If the option is not specified, the \p %opt::less is used.
             - \p opt::less - specifies binary predicate used for key comparison. Default is \p std::less<T>.
             - \p opt::item_counter - item counter type. Default is \p atomicity::item_counter since some operation on the counter is performed
-                without locks. Note that item counting is an essential part of the set algorithm, so dummy counter 
+                without locks. Note that item counting is an essential part of the set algorithm, so dummy counter
                 like as \p atomicity::empty_item_counter is not suitable.
             - \p opt::allocator - the allocator type using for memory allocation of bucket table and lock array. Default is \ref CDS_DEFAULT_ALLOCATOR.
             - \p opt::resizing_policy - the resizing policy that is a functor that decides when to resize the hash set.