1
0
mirror of https://github.com/rclone/rclone.git synced 2026-01-06 10:33:34 +00:00

build: fix gocritic lint issue wrapperfunc

This commit is contained in:
albertony
2024-05-31 15:25:27 +02:00
committed by Nick Craig-Wood
parent e82b5b11af
commit 33bff6fe71
9 changed files with 17 additions and 19 deletions

View File

@@ -23,7 +23,7 @@ import (
)
// Help contains text describing how to use the proxy
var Help = strings.Replace(`### Auth Proxy
var Help = strings.ReplaceAll(`### Auth Proxy
If you supply the parameter |--auth-proxy /path/to/program| then
rclone will use that program to generate backends on the fly which
@@ -104,7 +104,7 @@ before it takes effect.
This can be used to build general purpose proxies to any kind of
backend that rclone supports.
`, "|", "`", -1)
`, "|", "`")
// Options is options for creating the proxy
type Options struct {