From 3dc3fa10ee0a90f53e4aa131559ddb31c953bca4 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Sat, 19 Jan 2019 23:34:41 +0200 Subject: [PATCH] minor misspell fix Former-commit-id: 55408a6c25d55cd052bb613db201723eac977232 --- context/handler.go | 2 +- iris.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/context/handler.go b/context/handler.go index 1dcf1a02..a78423b9 100644 --- a/context/handler.go +++ b/context/handler.go @@ -45,7 +45,7 @@ type Filter func(Context) bool // as a middleware. // Filter is just a type of Handler which returns a boolean. // Handlers here should act like middleware, they should contain `ctx.Next` to proceed -// to the next handler of the chain. Those "handlers" are registed to the per-request context. +// to the next handler of the chain. Those "handlers" are registered to the per-request context. // // // It checks the "filter" and if passed then diff --git a/iris.go b/iris.go index f899fcdf..3cc537b7 100644 --- a/iris.go +++ b/iris.go @@ -345,7 +345,7 @@ var ( // as a middleware. // Filter is just a type of Handler which returns a boolean. // Handlers here should act like middleware, they should contain `ctx.Next` to proceed - // to the next handler of the chain. Those "handlers" are registed to the per-request context. + // to the next handler of the chain. Those "handlers" are registered to the per-request context. // // // It checks the "filter" and if passed then