8000 minor #39918 [FrameworkBundle][TwigBundle] slightly clarify command d… · alex-dev/symfony@f52ef5d · GitHub
[go: up one dir, main page]

Skip to content

Commit f52ef5d

Browse files
committed
minor symfony#39918 [FrameworkBundle][TwigBundle] slightly clarify command descriptions (xabbuh)
This PR was merged into the 5.3-dev branch. Discussion ---------- [FrameworkBundle][TwigBundle] slightly clarify command descriptions | Q | A | ------------- | --- | Branch? | 5.x | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | | License | MIT | Doc PR | Commits ------- 55e421f slightly clarify command descriptions
2 parents 0a66727 + 55e421f commit f52ef5d

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/Symfony/Bridge/Twig/Command/LintCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
class LintCommand extends Command
3636
{
3737
protected static $defaultName = 'lint:twig';
38-
protected static $defaultDescription = 'Lints a template and outputs encountered errors';
38+
protected static $defaultDescription = 'Lints a Twig template and outputs encountered errors';
3939

4040
private $twig;
4141

src/Symfony/Bundle/FrameworkBundle/Command/XliffLintCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
class XliffLintCommand extends BaseLintCommand
2626
{
2727
protected static $defaultName = 'lint:xliff';
28-
protected static $defaultDescription = 'Lints a XLIFF file and outputs encountered errors';
28+
protected static $defaultDescription = 'Lints an XLIFF file and outputs encountered errors';
2929

3030
public function __construct()
3131
{

src/Symfony/Bundle/FrameworkBundle/Command/YamlLintCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
class YamlLintCommand extends BaseLintCommand
2525
{
2626
protected static $defaultName = 'lint:yaml';
27-
protected static $defaultDescription = 'Lints a file and outputs encountered errors';
27+
protected static $defaultDescription = 'Lints a YAML file and outputs encountered errors';
2828

2929
public function __construct()
3030
{

src/Symfony/Bundle/TwigBundle/Command/LintCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
final class LintCommand extends BaseLintCommand
2424
{
2525
protected static $defaultName = 'lint:twig';
26-
protected static $defaultDescription = 'Lints a template and outputs encountered errors';
26+
protected static $defaultDescription = 'Lints a Twig template and outputs encountered errors';
2727

2828
/**
2929
* {@inheritdoc}

src/Symfony/Component/Translation/Command/XliffLintCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
class XliffLintCommand extends Command
3232
{
3333
protected static $defaultName = 'lint:xliff';
34-
protected static $defaultDescription = 'Lints a XLIFF file and outputs encountered errors';
34+
protected static $defaultDescription = 'Lints an XLIFF file and outputs encountered errors';
3535

3636
private $format;
3737< 8827 div class="diff-text-inner"> private $displayCorrectFiles;

src/Symfony/Component/Yaml/Command/LintCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
class LintCommand extends Command
3434
{
3535
protected static $defaultName = 'lint:yaml';
36-
protected static $defaultDescription = 'Lints a file and outputs encountered errors';
36+
protected static $defaultDescription = 'Lints a YAML file and outputs encountered errors';
3737

3838
private $parser;
3939
private $format;

0 commit comments

Comments
 (0)
0