Skip to content

Commit

Permalink
feat: add attr key mandatory for format
Browse files Browse the repository at this point in the history
  • Loading branch information
mitfik committed Mar 21, 2024
1 parent ec6a43d commit 394f5ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oca-file/src/ocafile.pest
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ meta = { ^"meta" ~ arg_ws ~ lang ~ arg_ws ~ props_key ~ prop_key_pairs }
information = {^"information" ~ arg_ws ~ lang ~ arg_ws ~ attrs_key ~ attr_key_pairs}
character_encoding = {^"character_encoding" ~ arg_ws ~ attrs_key ~ attr_key_pairs}
character_encoding_props = {^"character_encoding" ~ arg_ws ~ props_key ~ prop_key_pairs}
format = {^"format" ~ arg_ws ~ attrs_key? ~ attr_key_pairs}
format = {^"format" ~ arg_ws ~ attrs_key ~ attr_key_pairs}
conformance = {^"conformance" ~ arg_ws ~ attrs_key ~ attr_key_pairs}
conditional = {^"condition" ~ arg_ws ~ attrs_key ~ attr_key_pairs}
cardinality = {^"cardinality" ~ arg_ws ~ attrs_key ~ attr_key_pairs}
Expand Down

0 comments on commit 394f5ea

Please sign in to comment.