diff --git a/ps-grammar/restaurant/ordering.jsgf b/ps-grammar/restaurant/ordering.jsgf index 86e1612dd0b24f4a5cccedc5f9daedb7d358c626..b06003b1dd36f68f73d45d2653bd070e5f0ebabd 100644 --- a/ps-grammar/restaurant/ordering.jsgf +++ b/ps-grammar/restaurant/ordering.jsgf @@ -3,7 +3,9 @@ grammar restaurant_ordering; public <restaurant> = [tobi] [please] bring <objects> to <deliveryLocations>; -<deliveryLocations> = table (one | two | three); +<deliveryLocations> = table <numberOfTable>; + +<numberOfTable> = one | two | three; <objects> = <drinks> | <snacks>;