From b4ea9248360d741dfcb83ac9692d8b1b2626df04 Mon Sep 17 00:00:00 2001 From: Vishal Rana Date: Mon, 15 Sep 2025 21:05:14 -0700 Subject: [PATCH] Fix typo in SetParamValues comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change 'brake' to 'break' in Router#Find code comment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/context.go b/context.go index a70338d3..67e83181 100644 --- a/context.go +++ b/context.go @@ -359,7 +359,7 @@ func (c *context) ParamValues() []string { func (c *context) SetParamValues(values ...string) { // NOTE: Don't just set c.pvalues = values, because it has to have length c.echo.maxParam (or bigger) at all times - // It will brake the Router#Find code + // It will break the Router#Find code limit := len(values) if limit > len(c.pvalues) { c.pvalues = make([]string, limit)