This commit is contained in:
Gerasimos (Makis) Maropoulos 2020-08-26 07:54:48 +03:00
parent d44b69faed
commit a46f71804a
No known key found for this signature in database
GPG Key ID: 5DBE766BD26A54E7
2 changed files with 2 additions and 2 deletions

View File

@ -215,7 +215,7 @@ For a more detailed technical documentation you can head over to our [godocs](ht
[![follow Iris web framework on twitter](https://img.shields.io/twitter/follow/iris_framework?color=ee7506&logoColor=ee7506&style=for-the-badge&logo=twitter)](https://twitter.com/intent/follow?screen_name=iris_framework) [![follow Iris web framework on twitter](https://img.shields.io/twitter/follow/iris_framework?color=ee7506&logoColor=ee7506&style=for-the-badge&logo=twitter)](https://twitter.com/intent/follow?screen_name=iris_framework)
[![follow Iris web framework on facebook](https://img.shields.io/badge/Follow%20%40Iris.framework-450-2D88FF.svg?style=for-the-badge&logo=facebook)](https://www.facebook.com/iris.framework) [![follow Iris web framework on facebook](https://img.shields.io/badge/Follow%20%40Iris.framework-453-2D88FF.svg?style=for-the-badge&logo=facebook)](https://www.facebook.com/iris.framework)
You can [request](https://www.iris-go.com/#ebookDonateForm) a PDF version and online access of the **E-Book** today and be participated in the development of Iris. You can [request](https://www.iris-go.com/#ebookDonateForm) a PDF version and online access of the **E-Book** today and be participated in the development of Iris.

View File

@ -51,7 +51,7 @@ type (
// If Handler panics, the server (the caller of Handler) assumes that the effect of the panic was isolated to the active request. // If Handler panics, the server (the caller of Handler) assumes that the effect of the panic was isolated to the active request.
// It recovers the panic, logs a stack trace to the server error log, and hangs up the connection. // It recovers the panic, logs a stack trace to the server error log, and hangs up the connection.
Handler = context.Handler Handler = context.Handler
// 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. // based on the incoming request.
// //
// See `NewConditionalHandler` for more. // See `NewConditionalHandler` for more.