Bug in syntax for HexDigits

Syntax rule [23] is

HexDigits ::= [0-9] | [a-f] | [A-F]+

That should be 

HexDigits ::= ([0-9] | [a-f] | [A-F])+

------------------------------------------------------------------------------------
Norman Cohen
Pervasive Infrastructure/Synchronization and Messaging
IBM T.J. Watson Research Center, Hawthorne, NY
http://www.research.ibm.com/people/n/ncohen

Received on Friday, 17 October 2003 12:54:13 UTC