aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon DeVree <[email protected]>2018-06-10 22:28:49 +0000
committerJohn Keeping <[email protected]>2018-06-16 16:42:32 +0000
commit26610aff34b8dbbfa296bb7a9785c39831cfe7e3 (patch)
treeb6fd2c3eece20d64198168bc33d18ad44ec22f47
parentui-tree: free read_sha1_file() buffer after use (diff)
downloadcgit-26610aff34b8dbbfa296bb7a9785c39831cfe7e3.tar.gz
cgit-26610aff34b8dbbfa296bb7a9785c39831cfe7e3.zip
ui-tag: Fix inconsistent capitalization
Way back in 2009 all of these were lower cased except this one occurrence. Signed-off-by: Jon DeVree <[email protected]> Signed-off-by: John Keeping <[email protected]>
-rw-r--r--ui-tag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-tag.c b/ui-tag.c
index 909cde0..2c216d0 100644
--- a/ui-tag.c
+++ b/ui-tag.c
@@ -107,7 +107,7 @@ void cgit_print_tag(char *revname)
htmlf("<tr><td>tag name</td><td>");
html_txt(revname);
html("</td></tr>\n");
- html("<tr><td>Tagged object</td><td class='sha1'>");
+ html("<tr><td>tagged object</td><td class='sha1'>");
cgit_object_link(obj);
html("</td></tr>\n");
if (ctx.repo->snapshots)