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 2010/08/21 13:40:49 UTC

svn commit: r987730 - /subversion/trunk/subversion/libsvn_client/patch.c

Author: stsp
Date: Sat Aug 21 11:40:48 2010
New Revision: 987730

URL: http://svn.apache.org/viewvc?rev=987730&view=rev
Log:
* subversion/libsvn_client/patch.c
  (patch_target_t): Tweak docstrings for has_text_changes and has_prop_changes
   fields to imply that if these fields are set, changes have been applied to
   the patch target succesfully.

Modified:
    subversion/trunk/subversion/libsvn_client/patch.c

Modified: subversion/trunk/subversion/libsvn_client/patch.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/patch.c?rev=987730&r1=987729&r2=987730&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/patch.c (original)
+++ subversion/trunk/subversion/libsvn_client/patch.c Sat Aug 21 11:40:48 2010
@@ -197,10 +197,10 @@ typedef struct patch_target_t {
   /* True if the target has the executable bit set. */
   svn_boolean_t executable;
 
-  /* True if the patch changes the text of the target */
+  /* True if the patch changed the text of the target. */
   svn_boolean_t has_text_changes;
 
-  /* True if the patch changes any of the properties of the target */
+  /* True if the patch changed any of the properties of the target. */
   svn_boolean_t has_prop_changes;
 
   /* All the information that is specific to the content of the target. */