Fix minor type in context.go

This commit is contained in:
Rahul Datta Roy 2017-04-25 20:55:04 +08:00 committed by GitHub
parent e2212d40c6
commit ce0cee4266

View File

@ -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 {