aboutsummaryrefslogtreecommitdiff
path: root/weed/util/fullpath.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/util/fullpath.go')
-rw-r--r--weed/util/fullpath.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/util/fullpath.go b/weed/util/fullpath.go
index 6ac2af14f..94fe37f36 100644
--- a/weed/util/fullpath.go
+++ b/weed/util/fullpath.go
@@ -71,7 +71,7 @@ func (fp FullPath) IsUnder(other FullPath) bool {
return strings.HasPrefix(string(fp), string(other)+"/")
}
-func Split(separatedValues string, sep string) []string {
+func StringSplit(separatedValues string, sep string) []string {
if separatedValues == "" {
return nil
}