You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by yl...@apache.org on 2015/03/17 23:46:06 UTC

svn commit: r1667421 - /apr/apr/trunk/include/apr_skiplist.h

Author: ylavic
Date: Tue Mar 17 22:46:06 2015
New Revision: 1667421

URL: http://svn.apache.org/r1667421
Log:
skiplist: follow up to r1667420: fix bad copy/paste in description.

Modified:
    apr/apr/trunk/include/apr_skiplist.h

Modified: apr/apr/trunk/include/apr_skiplist.h
URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/apr_skiplist.h?rev=1667421&r1=1667420&r2=1667421&view=diff
==============================================================================
--- apr/apr/trunk/include/apr_skiplist.h (original)
+++ apr/apr/trunk/include/apr_skiplist.h Tue Mar 17 22:46:06 2015
@@ -222,7 +222,7 @@ APR_DECLARE(apr_skiplistnode *) apr_skip
  * @param sl The skip list
  * @param data The element to insert
  * @param comp The comparison function to use for placement into the skip list
- * @param myfree A function to be called for each replaced element
+ * @param myfree A function to be called for each removed duplicate
  * @remark If no comparison function has been set for the skip list, the element
  * will not be inserted, none will be replaced, and NULL will be returned.
  */
@@ -247,7 +247,7 @@ APR_DECLARE(apr_skiplistnode *) apr_skip
  * locating the element. In the case of duplicates, the 1st entry will be removed.
  * @param sl The skip list
  * @param data The element to remove
- * @param myfree A function to be called for each removed duplicate
+ * @param myfree A function to be called for each removed element
  * @param comp The comparison function to use for placement into the skip list
  * @remark If the element is not found, 0 will be returned.  Otherwise, the heightXXX
  * will be returned.