Skip to content

Commit

Permalink
Symmetry
Browse files Browse the repository at this point in the history
  • Loading branch information
dubadub committed Nov 10, 2021
1 parent f6e0a36 commit 9e3fdb3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions EBNF.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ step = { text item | ingredient | cookware | timer }, new line character ;
ingredient = one word ingredient | multiword ingredient ;
one word ingredient = "@", ( word, [ "{", { white space }, [ amount ], { white space }, "}" ]) ;
one word ingredient = "@", ( word, [ "{", { white space }, [ amount ], { white space }, "}" ] ) ;
multiword ingredient = "@", ( word, multiword, "{", { white space }, [ amount ], { white space }, "}" ) ;
cookware = one word cookware | multiword cookware ;
one word cookware = "#", ( word, [ "{", { white space }, [ quantity ], { white space }, "}" ]) ;
one word cookware = "#", ( word, [ "{", { white space }, [ quantity ], { white space }, "}" ] ) ;
multiword cookware = "#", ( word, multiword, "{", { white space }, [ quantity ], { white space }, "}" ) ;
timer = no name timer | one word timer | multiword timer ;
no name timer = "~", ( "{", { white space }, [ amount ], { white space }, "}" ) ;
one word timer = "~", ( word, [ "{", { white space }, [ amount ], { white space }, "}" ]) ;
one word timer = "~", ( word, [ "{", { white space }, [ amount ], { white space }, "}" ] ) ;
multiword timer = "~", ( word, multiword, "{", { white space }, [ amount ], { white space }, "}" ) ;
(* '%' separator will be changed soon to '*' *)
Expand Down

0 comments on commit 9e3fdb3

Please sign in to comment.