fixed charta indexing

This commit is contained in:
2026-03-31 14:40:25 +02:00
parent ec51bf6e34
commit 587ea5ba29
38 changed files with 626 additions and 358 deletions
+1 -1
View File
@@ -20,6 +20,6 @@ import "path/filepath"
type Path string
func (l Path) path(elem ...string) string {
complete := []string{string(l)}
complete := []string{string(l)} //nolint:prealloc
return filepath.Join(append(complete, elem...)...)
}