From abfaab5c778e2131108740a615481c5a9b58bfc1 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Tue, 21 Mar 2017 17:25:42 -0400 Subject: Fixed issue with invalid conjugation --- sentence.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 // Generate the form that the sentence should take. std::vector actions { {"like", verbly::token(std::set({"infinitive_phrase", "subjectless"}))}, - {"have", verbly::token(std::set({"gerund_phrase", "subjectless"}))} + {"have", verbly::token(std::set({"gerund_phrase", "subjectless", "past_participle"}))} }; verbly::token form = actions[ -- cgit 1.4.1