From 7d5465e17646841a7614ce0708b8df9734f268f4 Mon Sep 17 00:00:00 2001 From: Vishal Rana Date: Tue, 5 May 2015 22:25:19 -0700 Subject: [PATCH] Typo in godoc Signed-off-by: Vishal Rana --- echo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/echo.go b/echo.go index 1484b4af..ddab9ac0 100644 --- a/echo.go +++ b/echo.go @@ -166,7 +166,7 @@ func (e *Echo) Group(pfx string, m ...Middleware) *Echo { return &g } -// MaxParam sets the maximum number of path parameters allowd for the application. +// MaxParam sets the maximum number of path parameters allowed for the application. // Default value is 5, good enough for many use cases. func (e *Echo) MaxParam(n uint8) { e.maxParam = n