Skip to content

Commit de41e83

Browse files
committed
docs: fix group name
Built-in spark commands use group names with the first letter upper case.
1 parent 2e15098 commit de41e83

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

user_guide_src/source/cli/cli_commands.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ should contain the following code:
4949

5050
.. literalinclude:: cli_commands/002.php
5151

52-
If you run the **list** command, you will see the new command listed under its own ``demo`` group. If you take
52+
If you run the **list** command, you will see the new command listed under its own ``Demo`` group. If you take
5353
a close look, you should see how this works fairly easily. The ``$group`` property simply tells it how to organize
5454
this command with all of the other commands that exist, telling it what heading to list it under.
5555

user_guide_src/source/cli/cli_commands/002.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class AppInfo extends BaseCommand
99
{
10-
protected $group = 'demo';
10+
protected $group = 'Demo';
1111
protected $name = 'app:info';
1212
protected $description = 'Displays basic application information.';
1313

0 commit comments

Comments
 (0)