Fixed doxygen comments
authorkhizmax <libcds.dev@gmail.com>
Tue, 17 Jan 2017 21:07:07 +0000 (00:07 +0300)
committerkhizmax <libcds.dev@gmail.com>
Tue, 17 Jan 2017 21:07:07 +0000 (00:07 +0300)
cds/algo/atomic.h
cds/container/impl/feldman_hashmap.h

index 8cb74bada3e4ad1073b81e3f93f3ab60d19d8ea9..c27f70334eee199af7dcdbb662c4897858048cd9 100644 (file)
@@ -121,7 +121,7 @@ namespace cds {
                 Returns \p n.
             */
             value_type operator =(
-                value_type n    //< new value of the counter
+                value_type n    ///< new value of the counter
             ) CDS_NOEXCEPT
             {
                 m_counter.exchange( n, atomics::memory_order_relaxed );
index dc74e420749423e1c71682d3ca563778ae7b23aa..7ac74a0365c41b2d6ba2c4a36b89d4e34d9b7dfb 100644 (file)
@@ -356,8 +356,8 @@ namespace cds { namespace container {
     public:
         /// Creates empty map
         /**
-            @param head_bits: 2<sup>head_bits</sup> specifies the size of head array, minimum is 4.
-            @param array_bits: 2<sup>array_bits</sup> specifies the size of array node, minimum is 2.
+            @param head_bits - 2<sup>head_bits</sup> specifies the size of head array, minimum is 4.
+            @param array_bits - 2<sup>array_bits</sup> specifies the size of array node, minimum is 2.
 
             Equation for \p head_bits and \p array_bits:
             \code