Code

Fixing comment in merge strategies
authorTom Clarke <tom@u2i.com>
Thu, 30 Aug 2007 21:12:44 +0000 (23:12 +0200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 31 Aug 2007 00:18:22 +0000 (17:18 -0700)
Comments in both these strategies refer to the wrong number
of remotes

Signed-off-by: Tom Clarke <tom@u2i.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-merge-resolve.sh
git-merge-stupid.sh

index bb19da2cc15715df9c96ddea18c6d449ce49b6e4..93bcfc2f5dce418d00f26257788932d5c738785c 100755 (executable)
@@ -25,7 +25,7 @@ do
        esac
 done
 
-# Give up if we are given more than two remotes -- not handling octopus.
+# Give up if we are given two or more remotes -- not handling octopus.
 case "$remotes" in
 ?*' '?*)
        exit 2 ;;
index 4b1e595363cdcfae9d9c567d98127ee83bcc2b23..f612d4729c9ae0ccdebd6b9671da3b5f89bb65f0 100755 (executable)
@@ -24,7 +24,7 @@ do
        esac
 done
 
-# Give up if we are given more than two remotes -- not handling octopus.
+# Give up if we are given two or more remotes -- not handling octopus.
 case "$remotes" in
 ?*' '?*)
        exit 2 ;;