From 4d010325fe1cb008193bfd83e5d32023ba68acca Mon Sep 17 00:00:00 2001 From: Max R Date: Thu, 9 Feb 2017 15:41:50 +0100 Subject: [PATCH] Update console.rst In code example 'Configuring the Command' use single quote instead of double quotes to align with other code examples --- console.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console.rst b/console.rst index cf9aae48a88..b86efef6cb5 100644 --- a/console.rst +++ b/console.rst @@ -57,7 +57,7 @@ method. Then you can optionally define a help message and the // the full command description shown when running the command with // the "--help" option - ->setHelp("This command allows you to create users...") + ->setHelp('This command allows you to create users...') ; }