From 353fa14750af3091846047c0245f7bfc0450c7d3 Mon Sep 17 00:00:00 2001 From: Brian Wigginton Date: Tue, 27 Oct 2015 12:26:05 -0500 Subject: [PATCH] additional clarification --- context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/context.go b/context.go index ca86832..7772b46 100644 --- a/context.go +++ b/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.