diff --git a/website/content/guide/templates.md b/website/content/guide/templates.md index ffd7828b3..4ee8d6a37 100644 --- a/website/content/guide/templates.md +++ b/website/content/guide/templates.md @@ -53,6 +53,6 @@ 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") } ```