Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
acelaya committed Feb 18, 2020
1 parent cfe90d2 commit 53e2b95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Config/Option/ShortCodeLengthOption.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function ask(StyleInterface $io, PathCollection $currentOptions): int
{
return $io->ask(
'What is the default length you want generated short codes to have? (You will still be able to override '
. 'this on a per-short)',
. 'this on every created short URL)',
'5',
fn ($value) => $this->validatePositiveNumber($value, 4),
);
Expand Down
2 changes: 1 addition & 1 deletion test/Config/Option/ShortCodeLengthOptionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function expectedQuestionIsAsked(): void
$io = $this->prophesize(StyleInterface::class);
$ask = $io->ask(
'What is the default length you want generated short codes to have? (You will still be able to override '
. 'this on a per-short)',
. 'this on every created short URL)',
'5',
Argument::any(),
)->willReturn($expectedAnswer);
Expand Down

0 comments on commit 53e2b95

Please sign in to comment.