Skip to content

Commit eb09626

Browse files
jherlandJunio C Hamano
authored andcommitted
Fix stupid typo in lookup_tag()
Signed-off-by: Johan Herland <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 20b3d20 commit eb09626

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tag.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ struct tag *lookup_tag(const unsigned char *sha1)
3030
if (!obj->type)
3131
obj->type = OBJ_TAG;
3232
if (obj->type != OBJ_TAG) {
33-
error("Object %s is a %s, not a tree",
33+
error("Object %s is a %s, not a tag",
3434
sha1_to_hex(sha1), typename(obj->type));
3535
return NULL;
3636
}

0 commit comments

Comments
 (0)