From a46f71804a8eba18f4d1b1496735040c0db867d8 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Wed, 26 Aug 2020 07:54:48 +0300 Subject: [PATCH] minor --- README.md | 2 +- aliases.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ba2d2253..70957834 100644 --- a/README.md +++ b/README.md @@ -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 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. diff --git a/aliases.go b/aliases.go index 77270d9b..a4cf380a 100644 --- a/aliases.go +++ b/aliases.go @@ -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. // It recovers the panic, logs a stack trace to the server error log, and hangs up the connection. 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. // // See `NewConditionalHandler` for more.