1
0
mirror of https://github.com/labstack/echo.git synced 2025-01-22 03:09:04 +02:00

Minor documentation correction (#742)

This commit is contained in:
Jonathan Hall 2016-11-21 17:43:14 +00:00 committed by Vishal Rana
parent 054a310e70
commit d4dff985fa

View File

@ -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)
}