From d4dff985faca14344593fcfec5de43ce3d8cc82f Mon Sep 17 00:00:00 2001 From: Jonathan Hall Date: Mon, 21 Nov 2016 17:43:14 +0000 Subject: [PATCH] Minor documentation correction (#742) --- echo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/echo.go b/echo.go index cc251f85..c0fe414d 100644 --- a/echo.go +++ b/echo.go @@ -459,7 +459,7 @@ func (e *Echo) Routes() []Route { } // AcquireContext returns an empty `Context` instance from the pool. -// You must be return the context by calling `ReleaseContext()`. +// You must return the context by calling `ReleaseContext()`. func (e *Echo) AcquireContext() Context { return e.pool.Get().(Context) }