Skip to content

Commit 169cf91

Browse files
authored
Allow empty quoted string (#129)
Fixes #127
1 parent 646b0a2 commit 169cf91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GRAMMAR.ABNF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ unquoted-string = (%x41-5A / %x61-7A / %x5F) *( ; A-Za-z_
688688
%x41-5A / ; A-Z
689689
%x5F / ; _
690690
%x61-7A) ; a-z
691-
quoted-string = quotation-mark 1*(unescaped-char / escaped-char) quotation-mark
691+
quoted-string = quotation-mark *(unescaped-char / escaped-char) quotation-mark
692692
unescaped-char = %x20-21 / %x23-5B / %x5D-10FFFF
693693
escape = %x5C ; \
694694
quotation-mark = %x22 ; "

0 commit comments

Comments
 (0)