From 6bd27d0238f1946bd5076312aa49a35706079b9c Mon Sep 17 00:00:00 2001 From: Christopher Harrington Date: Sat, 14 Feb 2015 21:55:39 -0600 Subject: [PATCH] Remove reference to Martini from recovery.go --- recovery.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recovery.go b/recovery.go index a8d537e..82b76ee 100644 --- a/recovery.go +++ b/recovery.go @@ -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() {