浏览代码

Remove reference to Martini from recovery.go

Christopher Harrington 10 年之前
父节点
当前提交
6bd27d0238
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      recovery.go

+ 1 - 1
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.
 // 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 {
 func Recovery() HandlerFunc {
 	return func(c *Context) {
 	return func(c *Context) {
 		defer func() {
 		defer func() {