From c22bddc9a75da8192d07cbd1f23c78690cc16a07 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Tue, 9 Nov 2010 22:17:31 +0100 Subject: [PATCH] DDC-866 Fix deprecated EBNF rule --- manual/en/dql-doctrine-query-language.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/en/dql-doctrine-query-language.rst b/manual/en/dql-doctrine-query-language.rst index e99916d2c..0c824cd57 100644 --- a/manual/en/dql-doctrine-query-language.rst +++ b/manual/en/dql-doctrine-query-language.rst @@ -1297,7 +1297,7 @@ Path Expressions StateFieldPathExpression ::= IdentificationVariable "." StateField | SingleValuedAssociationPathExpression "." StateField /* "u.Group" */ - SingleValuedAssociationPathExpression ::= IdentificationVariable "." {SingleValuedAssociationField "."}* SingleValuedAssociationField + SingleValuedAssociationPathExpression ::= IdentificationVariable "." SingleValuedAssociationField /* "u.Group.Permissions" */ CollectionValuedPathExpression ::= IdentificationVariable "." {SingleValuedAssociationField "."}* CollectionValuedAssociationField