From f667346718eb9b572085cb590d23efa02acd5891 Mon Sep 17 00:00:00 2001 From: albertony <12441419+albertony@users.noreply.github.com> Date: Fri, 17 Jan 2025 12:37:06 +0100 Subject: [PATCH] docs: explain separated list parameters --- docs/content/docs.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/content/docs.md b/docs/content/docs.md index 15ee1a22f..233997b2b 100644 --- a/docs/content/docs.md +++ b/docs/content/docs.md @@ -622,8 +622,14 @@ line argument for rclone. Options documented to take a `stringArray` parameter accept multiple values. To pass more than one value, repeat the option; for example: -`--include value1 --include value2`. - +`--include value1 --include value2`. Other options may only accept a +single value, and should only be specified once, but where the +specified parameter may indicate a list of values separated by space +or comma. Such options are documented to take a `CommaSepList` +parameter, if comma separated, and `SpaceSepList` if space separated, +although some may also have different parameters such as `DumpFlags` +or just `string` and the help text explains that this will be +interpreted as a list. ### Time or duration options {#time-option}