We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52d2bff commit b4ea924Copy full SHA for b4ea924
context.go
@@ -359,7 +359,7 @@ func (c *context) ParamValues() []string {
359
360
func (c *context) SetParamValues(values ...string) {
361
// 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
+ // It will break the Router#Find code
363
limit := len(values)
364
if limit > len(c.pvalues) {
365
c.pvalues = make([]string, limit)
0 commit comments