1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-23 03:14:14 +00:00

fix spell error

This commit is contained in:
Leon Chan 2016-04-18 19:37:38 +08:00
parent 002dcaab23
commit df27c96102

View File

@ -261,7 +261,7 @@ func (c *Controller) Abort(code string) {
// CustomAbort stops controller handler and show the error data, it's similar Aborts, but support status code and body.
func (c *Controller) CustomAbort(status int, body string) {
// first panic from ErrorMaps, is is user defined error functions.
// first panic from ErrorMaps, it is user defined error functions.
if _, ok := ErrorMaps[body]; ok {
c.Ctx.Output.Status = status
panic(body)