Fix IRIRef defintions

Literal `"` is not allowed in an IRIRef. Fix this.
This commit is contained in:
kortschak 2014-08-23 10:57:49 +09:30
parent cce0f88803
commit d7e4aff72d
2 changed files with 4 additions and 2 deletions

View file

@ -73,7 +73,8 @@
; ;
IRIREF = '<' ( IRIREF = '<' (
'!' .. ';' '!'
| '#' .. ';'
| '=' | '='
| '?' .. '[' | '?' .. '['
| ']' | ']'

View file

@ -64,7 +64,8 @@
; ;
IRIREF = '<' ( IRIREF = '<' (
'!' .. ';' '!'
| '#' .. ';'
| '=' | '='
| '?' .. '[' | '?' .. '['
| ']' | ']'