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 2011/10/05 18:18:20 UTC

svn commit: r1179297 - /subversion/trunk/subversion/include/svn_types.h

Author: julianfoad
Date: Wed Oct  5 16:18:20 2011
New Revision: 1179297

URL: http://svn.apache.org/viewvc?rev=1179297&view=rev
Log:
* subversion/include/svn_types.h
  (svn_log_entry_t): Document the keys and values of the 'revprops' field.

Modified:
    subversion/trunk/subversion/include/svn_types.h

Modified: subversion/trunk/subversion/include/svn_types.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_types.h?rev=1179297&r1=1179296&r2=1179297&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_types.h (original)
+++ subversion/trunk/subversion/include/svn_types.h Wed Oct  5 16:18:20 2011
@@ -757,7 +757,7 @@ svn_log_changed_path2_dup(const svn_log_
 
 /**
  * A structure to represent a path that changed for a log entry.  Same as
- * #svn_log_changed_path2_t, but without the node kind.
+ * the first three fields of #svn_log_changed_path2_t.
  *
  * @deprecated Provided for backward compatibility with the 1.5 API.
  */
@@ -810,7 +810,8 @@ typedef struct svn_log_entry_t
   svn_revnum_t revision;
 
   /** The hash of requested revision properties, which may be NULL if it
-   * would contain no revprops. */
+   * would contain no revprops.  Maps (const char *) property name to
+   * (svn_string_t *) property value. */
   apr_hash_t *revprops;
 
   /**