From 8b526269158de5ea092506a40202900c0786f41f Mon Sep 17 00:00:00 2001 From: Jack Baldry Date: Thu, 16 Jan 2025 09:58:18 +0000 Subject: [PATCH] common/paths: Fix docstring --- common/paths/url.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/paths/url.go b/common/paths/url.go index 867f68bafba..1d1408b51e6 100644 --- a/common/paths/url.go +++ b/common/paths/url.go @@ -228,7 +228,7 @@ func UrlFromFilename(filename string) (*url.URL, error) { }, nil } -// UrlToFilename converts the URL s to a filename. +// UrlStringToFilename converts the URL s to a filename. // If ParseRequestURI fails, the input is just converted to OS specific slashes and returned. func UrlStringToFilename(s string) (string, bool) { u, err := url.ParseRequestURI(s)