Skip to content

Commit 3f784e3

Browse files
committed
[arithmetic-expression] Missing character code for division sign.
1 parent ebb80d2 commit 3f784e3

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
@@ -207,7 +207,7 @@ arithmetic-expression = expression "%" expression ; % %x37 \
207207
arithmetic-expression =/ expression ( "*" / "×" ) expression ; * %x42 ×  %xD7 \
208208
arithmetic-expression =/ expression "+" expression ; + %x43 \
209209
arithmetic-expression =/ expression ( "-" / "" ) expression ; - %x45 – %x2212 \
210-
arithmetic-expression =/ expression ( "/" / "÷" ) expression ; / %x47 ÷ \
210+
arithmetic-expression =/ expression ( "/" / "÷" ) expression ; / %x47 ÷ %F7 \
211211
arithmetic-expression = expression "//" expression ; // %47 %47
212212
;; An `arithmetic-expression` enables simple computations using the four basic operations,
213213
;; as well as the modulo and integer-division operations.

0 commit comments

Comments
 (0)