Skip to content

Commit a0f45a4

Browse files
committed
Fix module numbering
1 parent 0c9cd43 commit a0f45a4

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

module-2/client/notes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class Module2 extends CLI
2424

2525
protected function setup(Options $options)
2626
{
27-
$options->setHelp('This client is built to operate against the server defined in Module 1 only.');
27+
$options->setHelp('This client is built to operate against the server defined in Module 2 only.');
2828

2929
$options->registerCommand('create', 'Create a new note.');
3030
$options->registerCommand('get', 'Get a specific note.');

module-3/client/notes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Module3 extends CLI
2525

2626
protected function setup(Options $options)
2727
{
28-
$options->setHelp('This client is built to operate against the server defined in Module 1 only.');
28+
$options->setHelp('This client is built to operate against the server defined in Module 3 only.');
2929

3030
$options->registerCommand('create', 'Create a new note.');
3131
$options->registerCommand('get', 'Get a specific note.');

module-4/client/notes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Module4 extends CLI
2525

2626
protected function setup(Options $options)
2727
{
28-
$options->setHelp('This client is built to operate against the server defined in Module 1 only.');
28+
$options->setHelp('This client is built to operate against the server defined in Module 4 only.');
2929

3030
$options->registerCommand('create', 'Create a new note.');
3131
$options->registerCommand('get', 'Get a specific note.');

module-5/client/notes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Module5 extends CLI
2525

2626
protected function setup(Options $options)
2727
{
28-
$options->setHelp('This client is built to operate against the server defined in Module 1 only.');
28+
$options->setHelp('This client is built to operate against the server defined in Module 5 only.');
2929

3030
$options->registerCommand('create', 'Create a new note.');
3131
$options->registerCommand('get', 'Get a specific note.');

0 commit comments

Comments
 (0)