Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-02-22 12:27:02 +0300
committerJunio C Hamano <junkio@cox.net>2006-02-22 12:27:02 +0300
commit50319850343dfe534939ee6b38507d5a8fc44b50 (patch)
treedbfe506138066e9b42ee3165997fe86a7324f3de /rev-list.c
parentd9ad59e7636d98daa6131e9fd2cb2b4f5745a853 (diff)
rev-list.c: fix non-grammatical comments.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'rev-list.c')
-rw-r--r--rev-list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rev-list.c b/rev-list.c
index f2d1105cae..ee5f15ae4e 100644
--- a/rev-list.c
+++ b/rev-list.c
@@ -255,8 +255,8 @@ static void show_commit_list(struct commit_list *list)
die("unknown pending object %s (%s)", sha1_to_hex(obj->sha1), name);
}
while (objects) {
- /* An object with name "foo\n0000000000000000000000000000000000000000"
- * can be used confuse downstream git-pack-objects very badly.
+ /* An object with name "foo\n0000000..." can be used to
+ * confuse downstream git-pack-objects very badly.
*/
const char *ep = strchr(objects->name, '\n');
if (ep) {