aboutsummaryrefslogtreecommitdiffhomepage
path: root/common/paths/pathparser.go
diff options
context:
space:
mode:
Diffstat (limited to 'common/paths/pathparser.go')
-rw-r--r--common/paths/pathparser.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/paths/pathparser.go b/common/paths/pathparser.go
index 5fa798fb0..94329fe7a 100644
--- a/common/paths/pathparser.go
+++ b/common/paths/pathparser.go
@@ -153,7 +153,7 @@ func (pp *PathParser) doParse(component, s string, p *Path) (*Path, error) {
} else {
high = len(p.s)
}
- id := types.LowHigh{Low: i + 1, High: high}
+ id := types.LowHigh[string]{Low: i + 1, High: high}
if len(p.identifiers) == 0 {
p.identifiers = append(p.identifiers, id)
} else if len(p.identifiers) == 1 {
@@ -260,7 +260,7 @@ type Path struct {
component string
bundleType PathType
- identifiers []types.LowHigh
+ identifiers []types.LowHigh[string]
posIdentifierLanguage int
disabled bool