From 106804ad45e855abf22394518a555cc4a584de42 Mon Sep 17 00:00:00 2001 From: Dav <57032623+Dav-Git@users.noreply.github.com> Date: Sat, 22 Feb 2020 00:12:08 +0100 Subject: [PATCH] [Docs] Make Getting started guide explain use of quotes for arguments with spaces (#3555) * getting_started.rst now explains use of quotes for arguments with spaces * double quotes * proposal 1 * proposal 2 * fix typo Co-Authored-By: Flame442 <34169552+Flame442@users.noreply.github.com> Co-authored-by: Flame442 <34169552+Flame442@users.noreply.github.com> --- docs/getting_started.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/getting_started.rst b/docs/getting_started.rst index e02f355a4..da97454d0 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -351,6 +351,11 @@ The cog guides are formatted the same. They're divided into 3 sections: Arguments enclosed in ``[ ]`` means that the argument is **optional** for the command; you can decide to use it or not. + + If your argument includes spaces like ``Hello world!``, most of the time + you will need to place it in double quotes like this: ``"Hello world!"``. + Sometimes (especially for the last argument) these double quotes are not + required. Arguments followed by ``=something`` means that, if not specified, the argument will be equal to ``something``.