1
0
mirror of https://github.com/labstack/echo.git synced 2025-02-03 13:11:39 +02:00

fixed docs

Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
Vishal Rana 2016-10-20 09:10:10 -07:00
parent 0eb7c42aa1
commit d72b8b8b64
2 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ type (
Bind(interface{}) error
// Render renders a template with data and sends a text/html response with status
// code. Templates can be registered using `Echo.SetRenderer()`.
// code. Templates can be registered using `Echo.Renderer`.
Render(int, string, interface{}) error
// HTML sends an HTTP response with status code.

View File

@ -30,7 +30,7 @@ Example:
e.GET("/", hello)
// Start server
e.Start(":1323")
panic(e.Start(":1323"))
}
Learn more at https://echo.labstack.com