From ce0cee4266a7fe8f053afd70648c79f6766bbf84 Mon Sep 17 00:00:00 2001 From: Rahul Datta Roy Date: Tue, 25 Apr 2017 20:55:04 +0800 Subject: [PATCH] Fix minor type in context.go --- context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/context.go b/context.go index df001a40..d5f9e77f 100644 --- a/context.go +++ b/context.go @@ -154,7 +154,7 @@ func (c *Context) Error(err error) *Error { /******** METADATA MANAGEMENT********/ /************************************/ -// Set is used to store a new key/value pair exclusivelly for this context. +// Set is used to store a new key/value pair exclusively for this context. // It also lazy initializes c.Keys if it was not used previously. func (c *Context) Set(key string, value interface{}) { if c.Keys == nil {