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") } ```