Remove SkipList<gc::HRC> specializations
[libcds.git] / cds / container / impl / skip_list_map.h
index 841d6d79a927117b1bc45730e9183a715de63a54..dac53ed552a339e21e70f5848aa00e407d3a4b03 100644 (file)
@@ -57,7 +57,7 @@ namespace cds { namespace container {
         Like STL map class, %SkipListMap stores its key-value pair as <tt>std:pair< K const, T></tt>.
 
         \warning The skip-list requires up to 67 hazard pointers that may be critical for some GCs for which
-            the guard count is limited (like as gc::HP, gc::HRC). Those GCs should be explicitly initialized with
+            the guard count is limited (like \p gc::HP). Those GCs should be explicitly initialized with
             hazard pointer enough: \code cds::gc::HP myhp( 67 ) \endcode. Otherwise an run-time exception may be raised
             when you try to create skip-list object.
 
@@ -81,7 +81,7 @@ namespace cds { namespace container {
         before end of the map. Therefore, such iteration is more suitable for debugging purpose only
 
         Remember, each iterator object requires 2 additional hazard pointers, that may be
-        a limited resource for \p GC like as gc::HP and gc::HRC (however, for gc::PTB the count of
+        a limited resource for \p GC like \p gc::HP (for gc::PTB the count of
         guards is unlimited).
 
         The iterator class supports the following minimalistic interface: