You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2015/11/11 12:27:55 UTC

svn commit: r1713812 - /subversion/trunk/subversion/include/private/svn_sorts_private.h

Author: julianfoad
Date: Wed Nov 11 11:27:54 2015
New Revision: 1713812

URL: http://svn.apache.org/viewvc?rev=1713812&view=rev
Log:
* subversion/include/private/svn_sorts_private.h
  (svn_sort__hash): Tweak the doc string to avoid some confusing notation.

Modified:
    subversion/trunk/subversion/include/private/svn_sorts_private.h

Modified: subversion/trunk/subversion/include/private/svn_sorts_private.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/private/svn_sorts_private.h?rev=1713812&r1=1713811&r2=1713812&view=diff
==============================================================================
--- subversion/trunk/subversion/include/private/svn_sorts_private.h (original)
+++ subversion/trunk/subversion/include/private/svn_sorts_private.h Wed Nov 11 11:27:54 2015
@@ -53,12 +53,12 @@ struct svn_sort__item_t {
 /** Sort @a ht according to its keys, return an @c apr_array_header_t
  * containing @c svn_sort__item_t structures holding those keys and values
  * (i.e. for each @c svn_sort__item_t @a item in the returned array,
- * @a item->key and @a item->size are the hash key, and @a item->value points to
+ * @a item.key and @a item.size are the hash key, and @a item.value points to
  * the hash value).
  *
  * Storage is shared with the original hash, not copied.
  *
- * @a comparison_func should take two @c svn_sort__item_t's and return an
+ * @a comparison_func should take pointers to two items and return an
  * integer greater than, equal to, or less than 0, according as the first item
  * is greater than, equal to, or less than the second.
  *