diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-03-21 17:25:42 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-03-21 17:25:42 -0400 |
commit | abfaab5c778e2131108740a615481c5a9b58bfc1 (patch) | |
tree | 5458bddff3c2695b35d52053ed0c4503c9162219 | |
parent | 0feaa1acc6abc01a011c5a949f6b54dc42965b89 (diff) | |
download | support-abfaab5c778e2131108740a615481c5a9b58bfc1.tar.gz support-abfaab5c778e2131108740a615481c5a9b58bfc1.tar.bz2 support-abfaab5c778e2131108740a615481c5a9b58bfc1.zip |
Fixed issue with invalid conjugation
-rw-r--r-- | sentence.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sentence.cpp b/sentence.cpp index 3dabe58..d06ba10 100644 --- a/sentence.cpp +++ b/sentence.cpp | |||
@@ -16,7 +16,7 @@ std::string sentence::generate() const | |||
16 | // Generate the form that the sentence should take. | 16 | // Generate the form that the sentence should take. |
17 | std::vector<verbly::token> actions { | 17 | std::vector<verbly::token> actions { |
18 | {"like", verbly::token(std::set<std::string>({"infinitive_phrase", "subjectless"}))}, | 18 | {"like", verbly::token(std::set<std::string>({"infinitive_phrase", "subjectless"}))}, |
19 | {"have", verbly::token(std::set<std::string>({"gerund_phrase", "subjectless"}))} | 19 | {"have", verbly::token(std::set<std::string>({"gerund_phrase", "subjectless", "past_participle"}))} |
20 | }; | 20 | }; |
21 | 21 | ||
22 | verbly::token form = actions[ | 22 | verbly::token form = actions[ |