From 162aba60eb7567751a4190cdd1f02f530524f1c3 Mon Sep 17 00:00:00 2001 From: albertony <12441419+albertony@users.noreply.github.com> Date: Sun, 23 Jan 2022 22:54:08 +0100 Subject: [PATCH] http: error strings should not be capitalized --- backend/http/http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/http/http.go b/backend/http/http.go index 47a878bb3..e97ab4670 100644 --- a/backend/http/http.go +++ b/backend/http/http.go @@ -409,7 +409,7 @@ func (f *Fs) readDir(ctx context.Context, dir string) (names []string, err error return nil, fmt.Errorf("readDir: %w", err) } default: - return nil, fmt.Errorf("Can't parse content type %q", contentType) + return nil, fmt.Errorf("can't parse content type %q", contentType) } return names, nil }