summary refs log tree commit diff stats
path: root/sentence.cpp
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-03-21 17:25:42 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-03-21 17:25:42 -0400
commitabfaab5c778e2131108740a615481c5a9b58bfc1 (patch)
tree5458bddff3c2695b35d52053ed0c4503c9162219 /sentence.cpp
parent0feaa1acc6abc01a011c5a949f6b54dc42965b89 (diff)
downloadsupport-abfaab5c778e2131108740a615481c5a9b58bfc1.tar.gz
support-abfaab5c778e2131108740a615481c5a9b58bfc1.tar.bz2
support-abfaab5c778e2131108740a615481c5a9b58bfc1.zip
Fixed issue with invalid conjugation
Diffstat (limited to 'sentence.cpp')
-rw-r--r--sentence.cpp2
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[