diff --git a/website/content/guide/templates.md b/website/content/guide/templates.md index cdcdb49c..9cf7db00 100644 --- a/website/content/guide/templates.md +++ b/website/content/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") } ```