From 2d8477fc427b4864194c0221a1c16b2659d8207f Mon Sep 17 00:00:00 2001 From: mbesancon Date: Wed, 1 Feb 2017 15:47:50 +0100 Subject: [PATCH] Fixed typos in Context (#797) Simple english typos in the Copy() method --- context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/context.go b/context.go index e937a4c7..601754fe 100644 --- a/context.go +++ b/context.go @@ -68,7 +68,7 @@ func (c *Context) reset() { } // Copy returns a copy of the current context that can be safely used outside the request's scope. -// This have to be used then the context has to be passed to a goroutine. +// This has to be used when the context has to be passed to a goroutine. func (c *Context) Copy() *Context { var cp = *c cp.writermem.ResponseWriter = nil