You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2015/10/01 15:28:13 UTC

svn commit: r1706243 - /subversion/trunk/subversion/include/svn_diff.h

Author: rhuijben
Date: Thu Oct  1 13:28:13 2015
New Revision: 1706243

URL: http://svn.apache.org/viewvc?rev=1706243&view=rev
Log:
* subversion/include/svn_diff.h
  (svn_patch_t): Fix copy&pasto.

Found by: danielsh

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

Modified: subversion/trunk/subversion/include/svn_diff.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_diff.h?rev=1706243&r1=1706242&r2=1706243&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_diff.h (original)
+++ subversion/trunk/subversion/include/svn_diff.h Thu Oct  1 13:28:13 2015
@@ -1308,8 +1308,8 @@ typedef struct svn_patch_t {
   /** The old and new symlink bits, as retrieved from the patch file, from
   * the git-like mode headers.
   *
-  * A patch may specify a symlink change via @a old_executable_bit and
-  * @a new_executable_bit, via a #SVN_PROP_SPECIAL propchange hunk, or both
+  * A patch may specify a symlink change via @a old_symlink_bit and
+  * @a new_symlink_bit, via a #SVN_PROP_SPECIAL propchange hunk, or both
   * ways. It is upto caller how to decide how conflicting information is
   * handled. Most implementations will currently just describe a replacement
   * of the file though.