From dc2cae83489d47a2ccfa66cd693a0c60fbb83ee8 Mon Sep 17 00:00:00 2001 From: Edgard Barquero <1320985+ebarquero85@users.noreply.github.com> Date: Wed, 19 Mar 2025 16:37:16 -0600 Subject: [PATCH] Update templates.md fix bug in the example --- website/docs/guide/templates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/guide/templates.md b/website/docs/guide/templates.md index 4157b85e..541bcce7 100644 --- a/website/docs/guide/templates.md +++ b/website/docs/guide/templates.md @@ -51,7 +51,7 @@ Example below shows how to use Go `html/template`: ```go func Hello(c echo.Context) error { - return c.Render(http.StatusOK, "hello", "World") + return c.Render(http.StatusOK, "hello.html", "World") } ```