From fef56427ae40446280a8cacfb6f68ae13bd70d2b Mon Sep 17 00:00:00 2001 From: Kreusada <67752638+Kreusada@users.noreply.github.com> Date: Mon, 15 Mar 2021 03:47:53 +0000 Subject: [PATCH] [Docs] Add explanation for multiple arguments (#4889) * [Docs] Add explanation for multiple arguments * ordering fix * Add example * syntax --- docs/getting_started.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/getting_started.rst b/docs/getting_started.rst index 7ebb04ef7..f93f3c373 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -92,6 +92,13 @@ parameters. Sometimes (especially for the last argument) these double quotes are not required. + Arguments followed by an ellipsis ``...`` means that you may provide + multiple arguments for the command. + + For example, the command ``[p]cog install`` in the downloader cog has + the syntax ``cog install ``, meaning that you can provide + 1 or more ``cogs`` to install from the ``repo``. + Arguments followed by ``=value`` means that, if not specified, the argument will be equal to ``value``.