2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-02 03:33:22 +00:00

fix: add missing comma

This commit is contained in:
TorchedSammy 2022-02-27 19:24:02 -04:00
parent 3165552c21
commit df6a2bb0c7
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD

View File

@ -35,7 +35,7 @@ func matchPath(path, pref string) ([]string, error) {
"(", "\\(",
")", "\\)",
"[", "\\[",
"]", "\\]"
"]", "\\]",
}
r := strings.NewReplacer(args...)