about summary refs log tree commit diff stats
path: root/wordplay.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'wordplay.cpp')
-rw-r--r--wordplay.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/wordplay.cpp b/wordplay.cpp index af4fca2..669a6e0 100644 --- a/wordplay.cpp +++ b/wordplay.cpp
@@ -61,12 +61,12 @@ int main(int argc, char** argv)
61 verbly::token action = verbly::token::separator("\n", { 61 verbly::token action = verbly::token::separator("\n", {
62 verbly::token::punctuation("?", { 62 verbly::token::punctuation("?", {
63 "What do you call", 63 "What do you call",
64 verbly::token::definiteArticle(synonym), 64 verbly::token::indefiniteArticle(synonym),
65 hypernym 65 hypernym
66 }), 66 }),
67 verbly::token::capitalize( 67 verbly::token::capitalize(verbly::token::casing::capitalize,
68 verbly::token::punctuation("!", { 68 verbly::token::punctuation("!", {
69 verbly::token::definiteArticle(adjective), 69 verbly::token::indefiniteArticle(adjective),
70 noun 70 noun
71 })) 71 }))
72 }); 72 });