From b309fca2c10677e36fdaf8d21c9005d5e6a1a9b2 Mon Sep 17 00:00:00 2001 From: conradstrassburger <98957100+conradstrassburger@users.noreply.github.com> Date: Tue, 23 Sep 2025 19:57:36 +0200 Subject: [PATCH] Fix typo in pages.go --- pages.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pages.go b/pages.go index 09250bd..c83259a 100644 --- a/pages.go +++ b/pages.go @@ -29,7 +29,7 @@ func renderHomePage(w http.ResponseWriter, r *http.Request) { } tmpl, _ := template.New("index.html").Parse(indexHtml) tmpl.Execute(w, pageData) - log.Println("Renedered the home page.") + log.Println("Rendered the home page.") } @@ -45,3 +45,4 @@ func checkHealth(w http.ResponseWriter, r *http.Request) { io.WriteString(w, "alive") } +