You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2013/11/04 13:46:38 UTC

svn commit: r1538581 - /subversion/trunk/subversion/libsvn_wc/diff.h

Author: stsp
Date: Mon Nov  4 12:46:37 2013
New Revision: 1538581

URL: http://svn.apache.org/r1538581
Log:
* subversion/libsvn_wc/diff.h
  (svn_wc__diff_local_only_file, svn_wc__diff_local_only_dir): Clearly
   state the purpose of these functions in their docstrings, in addition
   to explaining the mechanics derived from that purpose.

Modified:
    subversion/trunk/subversion/libsvn_wc/diff.h

Modified: subversion/trunk/subversion/libsvn_wc/diff.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/diff.h?rev=1538581&r1=1538580&r2=1538581&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/diff.h (original)
+++ subversion/trunk/subversion/libsvn_wc/diff.h Mon Nov  4 12:46:37 2013
@@ -38,7 +38,9 @@
 extern "C" {
 #endif /* __cplusplus */
 
-/* Reports the file LOCAL_ABSPATH as ADDED file with relpath RELPATH to
+/* A function to diff locally added and locally copied files.
+  
+   Reports the file LOCAL_ABSPATH as ADDED file with relpath RELPATH to
    PROCESSOR with as parent baton PROCESSOR_PARENT_BATON.
 
    The node is expected to have status svn_wc__db_status_normal, or
@@ -61,7 +63,9 @@ svn_wc__diff_local_only_file(svn_wc__db_
                              void *cancel_baton,
                              apr_pool_t *scratch_pool);
 
-/* Reports the directory LOCAL_ABSPATH and everything below it (limited by
+/* A function to diff locally added and locally copied directories.
+  
+   Reports the directory LOCAL_ABSPATH and everything below it (limited by
    DEPTH) as added with relpath RELPATH to PROCESSOR with as parent baton
    PROCESSOR_PARENT_BATON.