with a route like this ```go r := chi.NewRouter() r.Get("/", handler) ``` when a request to `localhost:8080/` is received, the method `chi.RouteContext(r.Context()).RoutePattern()` return `""` I think the expected value is `/` maybe this can help ```go func (x *Context) RoutePattern() string { routePattern := strings.Join(x.RoutePatterns, "") routePattern = replaceWildcards(routePattern) routePattern = strings.TrimSuffix(routePattern, "//") if len(routePattern) > 1 { routePattern = strings.TrimSuffix(routePattern, "/") } return routePattern } ```