From 3d5cb1ab4a44ca27ee4c7898a6deb61958c80c94 Mon Sep 17 00:00:00 2001 From: Jan-Lukas Else Date: Fri, 11 Feb 2022 16:27:34 +0100 Subject: [PATCH] Fix typo --- ui.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui.go b/ui.go index 3996f0f..ae8d2fa 100644 --- a/ui.go +++ b/ui.go @@ -369,7 +369,7 @@ func (a *goBlog) renderIndex(hb *htmlBuilder, rd *renderData) { // RSS hb.writeElementOpen("link", "rel", "alternate", "type", "application/rss+xml", "title", "RSS"+feedTitle, "href", id.first+".rss") // ATOM - hb.writeElementOpen("link", "rel", "alternate", "type", "application/atom+xml", "title", "AROM"+feedTitle, "href", id.first+".atom") + hb.writeElementOpen("link", "rel", "alternate", "type", "application/atom+xml", "title", "ATOM"+feedTitle, "href", id.first+".atom") // JSON Feed hb.writeElementOpen("link", "rel", "alternate", "type", "application/feed+json", "title", "JSON Feed"+feedTitle, "href", id.first+".json") },