[XQuery] MS-XQ-LC1-055

Section 3.1.6 XQuery Comments	
Editorial/Technical	

The grammar production rule: 

[3]    ExprComment    ::=    ""(:"" (ExprCommentContent | ExprComment)*
"":)"" 

to denote the comment nesting is strange. Since ExprCommentContent
already allows (: and :) you never get to the nested ExprComment. Please
use 

[3]    ExprComment    ::=    ""(:"" ExprCommentContent* "":)"" 

Noting in text that nesting is ok should suffice.

Received on Tuesday, 20 January 2004 19:00:17 UTC