1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-18 02:17:05 +00:00

fix future issues like #1607

This commit is contained in:
Gerasimos (Makis) Maropoulos
2020-08-27 07:23:56 +03:00
parent 9c56ed6261
commit 39e3911d41
4 changed files with 44 additions and 13 deletions

View File

@@ -259,7 +259,7 @@ func ingoreMainHandlerName(name string) bool {
return false
}
// Filter is just a type of func(Handler) bool which reports whether an action must be performed
// Filter is just a type of func(Context) bool which reports whether an action must be performed
// based on the incoming request.
//
// See `NewConditionalHandler` for more.