Skip to content

Commit 69b29d6

Browse files
committed
Merge branch '4.4' into 5.0
* 4.4: 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 a0b51ba + 8f6f95b commit 69b29d6

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)