]> granicus.if.org Git - git/commitdiff
ll-merge: fix typo in comment
authorJunio C Hamano <gitster@pobox.com>
Thu, 14 Apr 2016 22:12:15 +0000 (15:12 -0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 14 Apr 2016 22:17:56 +0000 (15:17 -0700)
When a944af1d (merge: teach -Xours/-Xtheirs to binary ll-merge
driver, 2012-09-08) introduced FAVOR_OURS/FAVOR_THEIRS to the binary
ll-merge driver, it changed what happens to the merge result for the
outer merge, and updated the comment from:

    The tentative merge result is "ours" for the final round, or
    common ancestor for an internal merge.  Still return "conflicted
    merge" status.

to

    The tentative merge result is the or common ancestor for an
    internal merge.

What happened is obvious.  I noticed the lack of definitive article
in front of "common" but failed to remove "or".  Also I forgot to
describe what I did for the final merge, probably because I was
satisified by the description in the log message.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
ll-merge.c

index 8ea03e536a56655ff48f4fa8a3050c0225d52f38..5c73274b133dc03282d77ccbbd71978164a2edce 100644 (file)
@@ -46,7 +46,9 @@ static int ll_binary_merge(const struct ll_merge_driver *drv_unused,
        assert(opts);
 
        /*
-        * The tentative merge result is the or common ancestor for an internal merge.
+        * The tentative merge result is the common ancestor for an
+        * internal merge.  For the final merge, it is "ours" by
+        * default but -Xours/-Xtheirs can tweak the choice.
         */
        if (opts->virtual_ancestor) {
                stolen = orig;