ソースを参照

additional clarification

Brian Wigginton 10 年 前
コミット
353fa14750
1 ファイル変更1 行追加1 行削除
  1. 1 1
      context.go

+ 1 - 1
context.go

@@ -101,7 +101,7 @@ func (c *Context) IsAborted() bool {
 	return c.index >= abortIndex
 }
 
-// Abort prevents pending handlers from being called. Note that this will not stop the current execution context.
+// Abort prevents pending handlers from being called. Note that this will not stop the current handler.
 // Let's say you have an authorization middleware that validates that the current request is authorized. If the
 // authorization fails (ex: the password does not match), call Abort to ensure the remaining handlers
 // for this request are not called.