Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 08784cc

Browse files
committed
minor #53245 [ExpressionLanguage] Fix typo (OskarStark)
This PR was merged into the 7.1 branch. Discussion ---------- [ExpressionLanguage] Fix typo | Q | A | ------------- | --- | Branch? | 7.1 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | -- | License | MIT Commits ------- 9d5a48e [ExpressionLanguage] Fix typo
2 parents 395b450 + 9d5a48e commit 08784cc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Symfony/Component/ExpressionLanguage/Parser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\ExpressionLanguage;
1313

1414
/**
15-
* Parsers a token stream.
15+
* Parses a token stream.
1616
*
1717
* This parser implements a "Precedence climbing" algorithm.
1818
*

src/Symfony/Component/ExpressionLanguage/SerializedParsedExpression.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
use Symfony\Component\ExpressionLanguage\Node\Node;
1515

1616
/**
17-
* Represents an already parsed expression.
17+
* Represents an already serialized parsed expression.
1818
*
1919
* @author Fabien Potencier <[email protected]>
2020
*/

src/Symfony/Component/ExpressionLanguage/Token.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\ExpressionLanguage;
1313

1414
/**
15-
* Represents a Token.
15+
* Represents a token.
1616
*
1717
* @author Fabien Potencier <[email protected]>
1818
*/

0 commit comments

Comments
 (0)