From 86b8ed4f39119450a705cb15ee519402b51febb4 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Thu, 4 Jul 2019 02:00:18 +0300 Subject: [PATCH] minor misspell --- Routing-override-context-methods.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Routing-override-context-methods.md b/Routing-override-context-methods.md index 4c4c5dd..feb8ee5 100644 --- a/Routing-override-context-methods.md +++ b/Routing-override-context-methods.md @@ -1,6 +1,6 @@ In this section you will learn how to override the existing [Context](https://godoc.org/github.com/kataras/iris/context#Context)'s methods. -The [Context](https://godoc.org/github.com/kataras/iris/context#Context) is an interface. However on other frameworks you don't have that functionality of overriding it even if it's used as an interface. With Iris you can **attach** your implementation to the **context pool** itself using the `app.ContextPool.Attach` method. +The [Context](https://godoc.org/github.com/kataras/iris/context#Context) is an interface. However as you probably know, when using other frameworks you don't have that functionality of overriding even if it's used as an interface. With Iris you can **attach** your implementation to the **context pool** itself using the `app.ContextPool.Attach` method. 1. Let's get started by importing the `"github.com/kataras/iris/context"` which is required here. 2. Secondly, create your own Context implementation.