commit f7f1fb463a3f31b56f23a96c568d15b3dadaf000
parent fba805b08737da8dac17eb4d6c75a04749731099
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date: Sat, 4 Apr 2020 14:37:31 -0500
Correct closing tag
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/stagit.c b/stagit.c
@@ -480,7 +480,7 @@ writeheader(FILE *fp, const char *title)
xmlencode(fp, strippedname, strlen(strippedname));
fputs("</h1><p>", fp);
xmlencode(fp, description, strlen(description));
- fputs("<p>", fp);
+ fputs("</p>", fp);
if (cloneurl[0]) {
fputs("<pre>git clone ", fp);
xmlencode(fp, cloneurl, strlen(cloneurl));