Skip to content
Snippets Groups Projects
Commit c16e1f6c authored by rlipperts's avatar rlipperts
Browse files

Fix bill creation grammar

parent 0dbf39e0
No related branches found
No related tags found
No related merge requests found
#JSGF V1.0;
grammar removeAddBillItem;
public <removeAddBillItem> = ([the] <drink> [is missing] [(on|in) the (bill|list)]|[the] <drink> [(is|was) wrong]|remove [the] <drink> [from the (bill|list)| add [the] <drink> to the (bill|list));
public <removeAddBillItem> = <add>|<remove>;
<add> = <addA> | <addB>;
<addA> = [the] <drink> [<verb> missing] [<preposition> the <bill>];
<addB> = [please] add [the] <drink> [to the <bill>];
<remove> = <removeA> | <removeB>;
<removeA> = [the] <drink> [<verb> wrong];
<removeB> = [please] remove [the] <drink> [from the <bill>];
<bill> = (bill|list);
<verb> = (is|was);
<preposition> = (on|in);
<drink> = (coke|malz|lemonade|water|ice tea|coffee);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment