"hours" syntax

don't have any further specifications on the ranges of the digits, unlike:

     Clock-val             ::= Full-clock-val | Partial-clock-val | Timecount-val
     Full-clock-val        ::= Hours ":" Minutes ":" Seconds ("." Fraction)?
     Partial-clock-val     ::= Minutes ":" Seconds ("." Fraction)?
     Timecount-val         ::= Timecount ("." Fraction)?
                               ("h" | "min" | "s" | "ms")? ; default is "s"
     Hours                 ::= 2DIGIT; any positive number

the above should probably not be 2DIGIT, if it can be any positive number

     Minutes               ::= 2DIGIT; range from 00 to 59
     Seconds               ::= 2DIGIT; range from 00 to 59
     Fraction              ::= DIGIT+
     Timecount             ::= DIGIT+
     2DIGIT                ::= DIGIT DIGIT
     DIGIT                 ::= [0-9]

Received on Tuesday, 11 August 1998 17:24:00 UTC