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.
2 parents e28f713 + 9bf495b commit 86f3625Copy full SHA for 86f3625
internal/debug/api.go
@@ -207,7 +207,7 @@ func (*HandlerT) Stacks(filter *string) string {
207
// interpreter:
208
//
209
// E.g. (eth || snap) && !p2p -> (eth in Value || snap in Value) && p2p not in Value
210
- expanded = regexp.MustCompile("[:/\\.A-Za-z0-9_-]+").ReplaceAllString(expanded, "`$0` in Value")
+ expanded = regexp.MustCompile(`[:/\.A-Za-z0-9_-]+`).ReplaceAllString(expanded, "`$0` in Value")
211
expanded = regexp.MustCompile("!(`[:/\\.A-Za-z0-9_-]+`)").ReplaceAllString(expanded, "$1 not")
212
expanded = strings.Replace(expanded, "||", "or", -1)
213
expanded = strings.Replace(expanded, "&&", "and", -1)
0 commit comments