Skip to content

Commit

Permalink
[dot] Fix semicolon as attribute list separator (#4273)
Browse files Browse the repository at this point in the history
  • Loading branch information
dundalek authored Oct 4, 2024
1 parent 4f77adf commit f417a5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dot/DOT.g4
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ attr_list
;

a_list
: (id_ ( '=' id_)? ','?)+
: (id_ ( '=' id_)? (';' | ',')?)+
;

edge_stmt
Expand Down

0 comments on commit f417a5e

Please sign in to comment.