From 91582c010380cdc206dd0e76aa2e35439519fa3d Mon Sep 17 00:00:00 2001 From: Vishal Rana Date: Sun, 19 Apr 2015 16:07:39 -0700 Subject: [PATCH] Fixed broken build Signed-off-by: Vishal Rana --- README.md | 2 +- examples/hello/server.go | 2 +- website/docs/index.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f0225ce6..d0e31de7 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ func main() { e := echo.New() // Middleware - e.Use(mw.Logger) + e.Use(echo.Logger) // Routes e.Get("/", hello) diff --git a/examples/hello/server.go b/examples/hello/server.go index e7b2271a..f6263ca9 100644 --- a/examples/hello/server.go +++ b/examples/hello/server.go @@ -15,7 +15,7 @@ func main() { e := echo.New() // Middleware - e.Use(mw.Logger) + e.Use(echo.Logger) // Routes e.Get("/", hello) diff --git a/website/docs/index.md b/website/docs/index.md index e381cac6..8e5e0705 100644 --- a/website/docs/index.md +++ b/website/docs/index.md @@ -51,7 +51,7 @@ func main() { e := echo.New() // Middleware - e.Use(mw.Logger) + e.Use(echo.Logger) // Routes e.Get("/", hello)