From e4aa414add031309ea6ea57596031549cda5b2eb Mon Sep 17 00:00:00 2001 From: Cody Oss <6331106+codyoss@users.noreply.github.com> Date: Sun, 17 Dec 2017 21:45:11 -0600 Subject: [PATCH 1/2] fix a typo Former-commit-id: 266f99ad325eb0463c76fb3f6123dc0cdaba1aad --- 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 05c5af11..a774708a 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 agaiin, can be retrieved by the Cramework's context pool). +// instead of the Context(which again, can be retrieved by the Cramework's context pool). // // Note: Downgrade will by-pass the Wrapper, the caller is responsible for everything. // Downgrade is thread-safe. 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 2/2] 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.