mercurial/copies.py
changeset 42118 967c098eed33
parent 42115 27475ae67676
child 42142 5382d8f8530b
--- a/mercurial/copies.py	Fri Apr 12 23:26:08 2019 -0700
+++ b/mercurial/copies.py	Tue Apr 02 14:49:28 2019 -0700
@@ -430,8 +430,7 @@
 
 def mergecopies(repo, c1, c2, base):
     """
-    The function calling different copytracing algorithms on the basis of config
-    which find moves and copies between context c1 and c2 that are relevant for
+    Finds moves and copies between context c1 and c2 that are relevant for
     merging. 'base' will be used as the merge base.
 
     Copytracing is used in commands like rebase, merge, unshelve, etc to merge
@@ -472,6 +471,8 @@
     "dirmove" is a mapping of detected source dir -> destination dir renames.
     This is needed for handling changes to new files previously grafted into
     renamed directories.
+
+    This function calls different copytracing algorithms based on config.
     """
     # avoid silly behavior for update from empty dir
     if not c1 or not c2 or c1 == c2: