diff options
author | Nicolas Sebrecht <nicolas.s.dev@gmx.fr> | 2010-07-09 22:27:49 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-07-09 16:28:46 -0700 |
commit | 5e5ffa091bc272f5034a8e3f2bf9fbb0bd79086c (patch) | |
tree | a03be2dafc7ddb401e066349f57e908aac402271 | |
parent | Git 1.7.2-rc2 (diff) | |
download | tgif-5e5ffa091bc272f5034a8e3f2bf9fbb0bd79086c.tar.xz |
merge-recursive: use "up-to-date" instead of "uptodate" in error message for consistency
Signed-off-by: Nicolas Sebrecht <nicolas.s.dev@gmx.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | merge-recursive.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/merge-recursive.c b/merge-recursive.c index 856e98c083..fb6aa4a551 100644 --- a/merge-recursive.c +++ b/merge-recursive.c @@ -1214,7 +1214,7 @@ int merge_trees(struct merge_options *o, } if (sha_eq(common->object.sha1, merge->object.sha1)) { - output(o, 0, "Already uptodate!"); + output(o, 0, "Already up-to-date!"); *result = head; return 1; } |