Skip to content
Snippets Groups Projects
Commit 81681545 authored by lgraesner's avatar lgraesner Committed by Laurin Gräsner
Browse files

made the confirmation grammar significantly worse by allowing a stand-alone...

made the confirmation grammar significantly worse by allowing a stand-alone 'no'/'yes' without the [robot] prefix
parent 87aca8ea
No related branches found
No related tags found
1 merge request!19restored most of the confirmation grammar
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
grammar ToBI_confirm; grammar ToBI_confirm;
public <confirm> = <confirm_yes> | <confirm_no>; public <confirm> = <confirm_yes> | <confirm_no>;
<confirm_yes> = <robot> <yes_words>; <confirm_yes> = [<robot>] <yes_words>;
<confirm_no> = <robot> <no_words>; <confirm_no> = [<robot>] <no_words>;
<yes_words> = (yes); <yes_words> = (yes);
<no_words> = (no); <no_words> = (no);
<robot> = (tiago); <robot> = (tiago, tobi);
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