Skip to content

Commit f6aef34

Browse files
minor #35377 [FrameworkBundle] Fix small typo in output comment (jschaedl)
This PR was merged into the 4.4 branch. Discussion ---------- [FrameworkBundle] Fix small typo in output comment | Q | A | ------------- | --- | Branch? | 4.4 <!-- see below --> | Bug fix? | no | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tickets | - <!-- prefix each issue number with "Fix #", if any --> | License | MIT | Doc PR | - <!-- required for new features --> <!-- Replace this notice by a short README for your feature/bugfix. This will help people understand your PR and can be used as a start for the documentation. Additionally (see https://symfony.com/roadmap): - Always add tests and ensure they pass. - Never break backward compatibility (see https://symfony.com/bc). - Bug fixes must be submitted against the lowest maintained branch where they apply (lowest branches are regularly merged to upper ones so they get the fixes too.) - Features and deprecations must be submitted against branch master. --> Commits ------- d18f5ed851 [FrameworkBundle] Fix small typo in output comment
2 parents 1a28bea + b007d7a commit f6aef34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Command/SecretsListCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
101101
(new SymfonyStyle($input, $output))
102102
->table(['Secret', 'Value'] + (null !== $localSecrets ? [2 => 'Local Value'] : []), $rows);
103103

104-
$io->comment("Local values override secret values.\nUse <info>secrets:set --local</info> to defined them.");
104+
$io->comment("Local values override secret values.\nUse <info>secrets:set --local</info> to define them.");
105105

106106
return 0;
107107
}

0 commit comments

Comments
 (0)