Merge pull request #220 from ironiridis/patch-1

Remove reference to Martini from recovery.go
This commit is contained in:
Javier Provecho Fernandez 2015-02-15 23:00:18 +01:00
commit 5f68948ab0
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ func function(pc uintptr) []byte {
}
// Recovery returns a middleware that recovers from any panics and writes a 500 if there was one.
// While Martini is in development mode, Recovery will also output the panic as HTML.
// While Gin is in development mode, Recovery will also output the panic as HTML.
func Recovery() HandlerFunc {
return func(c *Context) {
defer func() {