This commit is contained in:
gingerBill
2021-11-23 10:59:50 +00:00

View File

@@ -150,7 +150,7 @@ join :: proc(elems: ..string, allocator := context.allocator) -> string {
context.allocator = allocator
for elem, i in elems {
if elem != "" {
s := strings.join(elems[i:], "/")
s := strings.join(elems[i:], "/", context.temp_allocator)
return clean(s)
}
}