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 2016/11/25 11:01:03 UTC

svn commit: r1771281 - /subversion/trunk/subversion/libsvn_wc/wc_db_update_move.c

Author: stsp
Date: Fri Nov 25 11:01:03 2016
New Revision: 1771281

URL: http://svn.apache.org/viewvc?rev=1771281&view=rev
Log:
* subversion/libsvn_wc/wc_db_update_move.c
  (update_incoming_moved_node): Improve docstring.
  (update_incoming_move): Fix formatting of a comment.

Modified:
    subversion/trunk/subversion/libsvn_wc/wc_db_update_move.c

Modified: subversion/trunk/subversion/libsvn_wc/wc_db_update_move.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/wc_db_update_move.c?rev=1771281&r1=1771280&r2=1771281&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db_update_move.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db_update_move.c Fri Nov 25 11:01:03 2016
@@ -2063,8 +2063,8 @@ get_working_info(apr_hash_t **props,
   return SVN_NO_ERROR;
 }
 
-/* ### Drive TC_EDITOR so as to ...
- */
+/* Apply changes found in the victim node at SRC_RELPATH to the incoming
+ * move at DST_RELPATH. */
 static svn_error_t *
 update_incoming_moved_node(node_move_baton_t *nmb,
                            svn_wc__db_wcroot_t *wcroot,
@@ -2305,7 +2305,7 @@ update_incoming_move(svn_revnum_t *old_r
 
   /* We walk the move source, comparing each node with the equivalent node at
    * the move destination and applying any local changes to nodes at the move
-   destination. */
+   * destination. */
   SVN_ERR(update_incoming_moved_node(&nmb, wcroot, local_relpath, dst_relpath,
                                      scratch_pool));