1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-06 00:03:32 +00:00

docs: don't show fictional example values for options as multiple choice items

See #5538
This commit is contained in:
albertony
2021-08-22 15:11:41 +02:00
parent 8efead1ee6
commit f589dbc077
5 changed files with 7 additions and 33 deletions

View File

@@ -48,12 +48,8 @@ func init() {
NewFs: NewFs,
Options: []fs.Option{{
Name: "host",
Help: "FTP host to connect to.",
Help: "FTP host to connect to.\n\nE.g. \"ftp.example.com\".",
Required: true,
Examples: []fs.OptionExample{{
Value: "ftp.example.com",
Help: "Connect to ftp.example.com",
}},
}, {
Name: "user",
Help: "FTP username, leave blank for current username, " + currentUser + ".",