diff -ru src/ExpressionParser/Infix/OptionalChainExpressionParser.php src/ExpressionParser/Infix/OptionalChainExpressionParser.php --- src/ExpressionParser/Infix/OptionalChainExpressionParser.php 2025-04-01 10:09:57.363625411 +0000 +++ src/ExpressionParser/Infix/OptionalChainExpressionParser.php 2025-04-01 10:10:01.190635231 +0000 @@ -53,7 +53,7 @@ ) { $attribute = new ConstantExpression($token->getValue(), $token->getLine()); } else { - throw new SyntaxError(\sprintf('Expected name or number, got value "%s" of type %s.', $token->getValue(), $token->toEnglish()), $token->getLine(), $stream->getSourceContext()); + throw new SyntaxError(\sprintf('Expected name or number, got value "%s" of type "%s".', $token->getValue(), $token->toEnglish()), $token->getLine(), $stream->getSourceContext()); } } diff -ru src/Extension/CoreExtension.php src/Extension/CoreExtension.php --- src/Extension/CoreExtension.php 2025-04-01 10:09:57.597626011 +0000 +++ src/Extension/CoreExtension.php 2025-04-01 10:10:01.191635234 +0000 @@ -2090,7 +2090,7 @@ } if ($env->hasExtension(SandboxExtension::class) && $env->getExtension(SandboxExtension::class)->isSandboxed()) { - throw new RuntimeError(\sprintf('The callable passed to the "%s" %s must be a Closure in sandbox mode.', $thing, $type)); + throw new RuntimeError(\sprintf('The callable passed to the "%s" "%s" must be a Closure in sandbox mode.', $thing, $type)); } trigger_deprecation('twig/twig', '3.15', 'Passing a callable that is not a PHP \Closure as an argument to the "%s" %s is deprecated.', $thing, $type);