mirror of
https://github.com/rclone/rclone.git
synced 2025-06-26 15:01:41 +02:00
fs: fix formatting of errInvalidCharacters error message
errInvalidCharacters: 'and space .' -> 'and space.' Remove a space between the word, space, and period. Co-authored-by: jtagcat <gitlab@c7.ee>
This commit is contained in:
parent
da862f82cf
commit
d6a9017298
@ -17,7 +17,7 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var (
|
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")
|
||||||
errCantBeEmpty = errors.New("can't use empty string as a path")
|
errCantBeEmpty = errors.New("can't use empty string as a path")
|
||||||
errCantStartWithDash = errors.New("config name starts with -")
|
errCantStartWithDash = errors.New("config name starts with -")
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user