Skip to content

Commit c52537c

Browse files
authored
Merge pull request #463 from sam-maloney/rfc35-fix-syntax-highlighting
rfc35: fix grammar syntax highlighting
2 parents 25395d8 + e429726 commit c52537c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

spec_35.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Grammar
7777

7878
The basic grammar for the constraint query language is
7979

80-
.. code-block:: EBNF
80+
.. code-block:: PEG
8181
8282
expr
8383
: expr expr
@@ -89,15 +89,15 @@ The basic grammar for the constraint query language is
8989
| term
9090
9191
and
92-
: /&{1,2}|and\b/
92+
: &{1,2}|and\b
9393
or
94-
: /\|{1,2}|or\b/
94+
: \|{1,2}|or\b
9595
9696
not
97-
: /not\b/
97+
: not\b
9898
9999
term
100-
: operator':'operand
100+
: operator ':' operand
101101
| operand
102102
103103
operator

0 commit comments

Comments
 (0)