1
0
mirror of https://github.com/labstack/echo.git synced 2024-11-28 08:38:39 +02:00

Fixed typo

This commit is contained in:
Merten van Gerven 2015-10-12 14:24:23 +02:00
parent 748bd91dbe
commit 5ee38fbfb6

View File

@ -12,7 +12,7 @@ func main() {
// Setup
e := echo.New()
e.Get("/", func(c *echo.Context) error {
return c.String(http.StatusOK, "Sue sews rose on slow jor crows nose")
return c.String(http.StatusOK, "Sue sews rose on slow joe crows nose")
})
graceful.ListenAndServe(e.Server(":1323"), 5*time.Second)