From 02d94041f9ae66d3bd571c6a90f1a61077ca7a17 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Thu, 29 Nov 2018 04:01:05 +0200 Subject: [PATCH] fix grammar and misspell Former-commit-id: 1816619f891df77a5d1925d43c25243dcadbceb5 --- mvc/controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mvc/controller.go b/mvc/controller.go index f7c75eef..804b1b00 100644 --- a/mvc/controller.go +++ b/mvc/controller.go @@ -77,7 +77,7 @@ type ControllerActivator struct { // the already-registered routes, key = the controller's function name. // End-devs can change some properties of the *Route on the `BeforeActivator` by using the - // `GetRoute(functionName)`. It's also protects for duplicatations. + // `GetRoute(functionName)`. It's a shield against duplications as well. routes map[string]*router.Route // the bindings that comes from the Engine and the controller's filled fields if any.