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/01/27 16:15:16 UTC

svn commit: r1064151 - /subversion/trunk/subversion/libsvn_client/client.h

Author: julianfoad
Date: Thu Jan 27 15:15:15 2011
New Revision: 1064151

URL: http://svn.apache.org/viewvc?rev=1064151&view=rev
Log:
* subversion/libsvn_client/client.h
  (svn_client__condense_commit_items, svn_client__do_commit): Mention the
    type of elements in the 'commit_items' array.

Modified:
    subversion/trunk/subversion/libsvn_client/client.h

Modified: subversion/trunk/subversion/libsvn_client/client.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/client.h?rev=1064151&r1=1064150&r2=1064151&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/client.h (original)
+++ subversion/trunk/subversion/libsvn_client/client.h Thu Jan 27 15:15:15 2011
@@ -860,6 +860,8 @@ int svn_client__sort_commit_item_urls(co
    a common *BASE_URL for the items in the array, and rewrite those
    items' URLs to be relative to that *BASE_URL.
 
+   COMMIT_ITEMS is an array of (svn_client_commit_item3_t *) items.
+
    Afterwards, some of the items in COMMIT_ITEMS may contain data
    allocated in POOL. */
 svn_error_t *
@@ -871,7 +873,9 @@ svn_client__condense_commit_items(const 
 /* Commit the items in the COMMIT_ITEMS array using EDITOR/EDIT_BATON
    to describe the committed local mods.  Prior to this call,
    COMMIT_ITEMS should have been run through (and BASE_URL generated
-   by) svn_client__condense_commit_items.
+   by) svn_client__condense_commit_items().
+
+   COMMIT_ITEMS is an array of (svn_client_commit_item3_t *) items.
 
    CTX->NOTIFY_FUNC/CTX->BATON will be called as the commit progresses, as
    a way of describing actions to the application layer (if non NULL).