mirror of
https://github.com/rclone/rclone.git
synced 2025-08-16 16:41:34 +02:00
docs: remote names may not start or end with space
This commit is contained in:
committed by
Nick Craig-Wood
parent
683178a1f4
commit
f650a543ef
@ -17,7 +17,7 @@ const (
|
||||
)
|
||||
|
||||
var (
|
||||
errInvalidCharacters = errors.New("config name contains invalid characters - may only contain `0-9`, `A-Z`, `a-z`, `_`, `-`, `.` and space")
|
||||
errInvalidCharacters = errors.New("config name contains invalid characters - may only contain `0-9`, `A-Z`, `a-z`, `_`, `-`, `.` and space, while not start or end with space")
|
||||
errCantBeEmpty = errors.New("can't use empty string as a path")
|
||||
errCantStartWithDash = errors.New("config name starts with `-`")
|
||||
errBadConfigParam = errors.New("config parameters may only contain `0-9`, `A-Z`, `a-z` and `_`")
|
||||
|
Reference in New Issue
Block a user