1
0
mirror of https://github.com/labstack/echo.git synced 2025-10-30 23:57:38 +02:00

Fix typo "+"

This commit is contained in:
yuya-morimoto
2025-10-07 16:34:58 +09:00
committed by Martti T.
parent 55cb3b625d
commit 40e2e8faf9

View File

@@ -692,7 +692,7 @@ func (r *Router) Find(method, path string, c Context) {
// update indexes/search in case we need to backtrack when no handler match is found
paramIndex++
searchIndex += +len(search)
searchIndex += len(search)
search = ""
if h := currentNode.findMethod(method); h != nil {