Closed codalogic closed 6 years ago
Noticed that my ABNF extractor, incorrectly converted "_" to "-" giving the rule:
"_"
"-"
name = ALPHA *( ALPHA / DIGIT / "-" / "-" )
instead of:
name = ALPHA *( ALPHA / DIGIT / "-" / "_" )
This PR fixes it. (Important for the RFC.)
Noticed that my ABNF extractor, incorrectly converted
"_"
to"-"
giving the rule:instead of:
This PR fixes it. (Important for the RFC.)