From 835e2f8c087ab1435de12c5af0855001552e09f8 Mon Sep 17 00:00:00 2001 From: Cody Oss <6331106+codyoss@users.noreply.github.com> Date: Mon, 18 Dec 2017 00:25:57 -0600 Subject: [PATCH] fix another minor typo Former-commit-id: 0961f0882e63d3d43ef8c176a873bcd4e0d155ec --- core/router/router.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/router/router.go b/core/router/router.go index a774708a..805c0df1 100644 --- a/core/router/router.go +++ b/core/router/router.go @@ -83,7 +83,7 @@ func (router *Router) BuildRouter(cPool *context.Pool, requestHandler RequestHan // be aware to change the global variables of 'ParamStart' and 'ParamWildcardStart'. // can be used to implement a custom proxy or // a custom router which should work with raw ResponseWriter, *Request -// instead of the Context(which again, can be retrieved by the Cramework's context pool). +// instead of the Context(which again, can be retrieved by the Framework's context pool). // // Note: Downgrade will by-pass the Wrapper, the caller is responsible for everything. // Downgrade is thread-safe.