Skip to content

Commit 62d0612

Browse files
committed
Merge branch '5.0'
* 5.0: Add missing dots at the end of exception messages Add missing dots at the end of exception messages [DI][Form] Fixed test suite (TimeType changes & unresolved merge conflict) Fix bad merge Add missing dots at the end of exception messages
2 parents 1db8f73 + 69b29d6 commit 62d0612

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

XPath/Extension/FunctionExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function translateNthChild(XPathExpr $xpath, FunctionNode $function, bool
5353
try {
5454
list($a, $b) = Parser::parseSeries($function->getArguments());
5555
} catch (SyntaxErrorException $e) {
56-
throw new ExpressionErrorException(sprintf('Invalid series: %s', implode(', ', $function->getArguments())), 0, $e);
56+
throw new ExpressionErrorException(sprintf('Invalid series: %s.', implode(', ', $function->getArguments())), 0, $e);
5757
}
5858

5959
$xpath->addStarPrefix();

0 commit comments

Comments
 (0)