Skip to content

Commit b4ea924

Browse files
vishrclaude
authored andcommitted
Fix typo in SetParamValues comment
Change 'brake' to 'break' in Router#Find code comment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 52d2bff commit b4ea924

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

context.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ func (c *context) ParamValues() []string {
359359

360360
func (c *context) SetParamValues(values ...string) {
361361
// NOTE: Don't just set c.pvalues = values, because it has to have length c.echo.maxParam (or bigger) at all times
362-
// It will brake the Router#Find code
362+
// It will break the Router#Find code
363363
limit := len(values)
364364
if limit > len(c.pvalues) {
365365
c.pvalues = make([]string, limit)

0 commit comments

Comments
 (0)