Skip to content

Commit 24ae473

Browse files
committed
minor #271 Tiny fix: Don't end the link with a 'period'. (bobdenotter)
This PR was merged into the 1.0-dev branch. Discussion ---------- Tiny fix: Don't end the link with a 'period'. Not having the link end in a period makes it easier to click or copy/paste. This is also consistent with a few other places in the same bundle. Commits ------- e45f554 Tiny fix: Don't end the link with a 'period'.
2 parents 7fd0580 + e45f554 commit 24ae473

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Command/MakerCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ protected function interact(InputInterface $input, OutputInterface $output)
7979
if (!$this->fileManager->isNamespaceConfiguredToAutoload($this->generator->getRootNamespace())) {
8080
$this->io->note([
8181
sprintf('It looks like your app may be using a namespace other than "%s".', $this->generator->getRootNamespace()),
82-
'To configure this and make your life easier, see: https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html#configuration.',
82+
'To configure this and make your life easier, see: https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html#configuration',
8383
]);
8484
}
8585

0 commit comments

Comments
 (0)