From 673de2cf59e2f573895f7b9239785c634ca9ba38 Mon Sep 17 00:00:00 2001 From: nulltoken Date: Wed, 30 Mar 2011 21:29:10 +0200 Subject: [PATCH] Fix misleading comments --- tests/t08-tag.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/t08-tag.c b/tests/t08-tag.c index 70eeb28a6..09d131036 100644 --- a/tests/t08-tag.c +++ b/tests/t08-tag.c @@ -78,14 +78,14 @@ BEGIN_TEST(write0, "write a tag to the repository and read it again") git_oid_mkstr(&target_id, tagged_commit); - /* create signatures */ + /* create signature */ tagger = git_signature_new(TAGGER_NAME, TAGGER_EMAIL, 123456789, 60); must_be_true(tagger != NULL); must_pass(git_tag_create( &tag_id, /* out id */ repo, - "the-tag", /* do not update the HEAD */ + "the-tag", &target_id, GIT_OBJ_COMMIT, tagger,