Skip to content

Commit

Permalink
Merge pull request #171 from plbertrand/patch-1
Browse files Browse the repository at this point in the history
Fix typo grammar.ebnf
  • Loading branch information
Ph0enixKM authored Jun 11, 2024
2 parents ec95070 + d1597b6 commit 4f5b458
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions grammar.ebnf
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ list = empty_list | full_list ;
(* The ordering of command modifiers doesn't matter *)
command_modifier = SILENT_MOD, [ UNSAFE_MOD ] ;
command_modifier_block = command_modifier, multiline_block ;
commnad_base = '$', { ANY_CHAR | interpolation }, '$' ;
command = [ SILENT_MOD ], commnad_base, [ failure_handler ] ;
command_unsafe = [ SILENT_MOD ], UNSAFE_MOD, commnad_base ;
command_base = '$', { ANY_CHAR | interpolation }, '$' ;
command = [ SILENT_MOD ], command_base, [ failure_handler ] ;
command_unsafe = [ SILENT_MOD ], UNSAFE_MOD, command_base ;
(* Operations *)
binary_operation = expression , BINARY_OP , expression ;
Expand Down

0 comments on commit 4f5b458

Please sign in to comment.