error in part 2: production 10 (regex's)

It has been pointed out by someone at Microsoft that there is an error in
production 10 of the regex appendix [1].

Production 10 currently reads:

	[10] Char ::= [^.\?*+()|#x5b#x5d]

and it should read:

	[10] Char ::= [^.\?*+{}()#x5b#x5d]

The change is the addition of {, }, and the deletion of |.

pvb

References
[1] http://www.w3.org/TR/xmlschema-2.htm#regexs

Received on Thursday, 26 July 2001 17:40:48 UTC