Skip to content

Commit

Permalink
multiset and listd fix (YARSpg.ebnf)
Browse files Browse the repository at this point in the history
  • Loading branch information
lszeremeta authored Nov 30, 2021
1 parent 4a52868 commit 3a68939
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions other-notations/YARSpg.ebnf
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,13 @@ complex_value_schema
| listd_schema
| struct_schema
multiset_schema
::= MULTISET '(' ( primitive_value_schema | set_schema ) NULL? cardinality? ')' meta_prop_schema?
::= MULTISET '(' ( primitive_value_schema | multiset_schema ) NULL? cardinality? ')' meta_prop_schema?
set_schema
::= SET '(' ( primitive_value_schema | set_schema ) NULL? cardinality? ')' meta_prop_schema?
list_schema
::= LIST '(' ( primitive_value_schema | list_schema ) NULL? cardinality? ')' meta_prop_schema?
listd_schema
::= LISTD '(' ( primitive_value_schema | list_schema ) NULL? cardinality? ')' meta_prop_schema?
::= LISTD '(' ( primitive_value_schema | listd_schema ) NULL? cardinality? ')' meta_prop_schema?
struct_schema
::= STRUCT '(' ( primitive_value_schema | struct_schema ) NULL? cardinality? ')' meta_prop_schema?
edge_schema
Expand Down Expand Up @@ -197,4 +197,4 @@ UNSIGNED_INT
::= [0-9]+
ALNUMPLUS
::= [a-zA-Z_] [a-zA-Z0-9_]*
WS ::= [ #x9#xa]+
WS ::= [ #x9#xa]+

0 comments on commit 3a68939

Please sign in to comment.