diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-21 14:58:42 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-21 14:58:42 +0800 |
commit | f1247b104a0dba8226c443d876737ee924db6a1d (patch) | |
tree | 3fe084071d64ae30d0ffd12a8f10da30ae6d113f /misc/path.go | |
parent | mailkit: Remove underscores (diff) | |
download | go-lindenii-common-f1247b104a0dba8226c443d876737ee924db6a1d.tar.gz go-lindenii-common-f1247b104a0dba8226c443d876737ee924db6a1d.tar.zst go-lindenii-common-f1247b104a0dba8226c443d876737ee924db6a1d.zip |
misc: Remove underscores
Diffstat (limited to 'misc/path.go')
-rw-r--r-- | misc/path.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/path.go b/misc/path.go index 1b2e8a3..c7540fc 100644 --- a/misc/path.go +++ b/misc/path.go @@ -5,7 +5,7 @@ import ( "strings" ) -func Sanitize_path(path string) (string, bool) { +func SanitizePath(path string) (string, bool) { if path == "" { return "", false } |