summary refs log tree commit diff stats
path: root/lib/token.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/token.h')
-rw-r--r--lib/token.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/token.h b/lib/token.h index 6df2fb5..0bbe79a 100644 --- a/lib/token.h +++ b/lib/token.h
@@ -114,7 +114,7 @@ namespace verbly {
114 114
115 static token separator(std::string param, token inner); 115 static token separator(std::string param, token inner);
116 static token punctuation(std::string param, token inner); 116 static token punctuation(std::string param, token inner);
117 static token definiteArticle(token inner); 117 static token indefiniteArticle(token inner);
118 static token capitalize(casing param, token inner); 118 static token capitalize(casing param, token inner);
119 119
120 token& getInnerToken(); 120 token& getInnerToken();
@@ -124,13 +124,13 @@ namespace verbly {
124 124
125 std::string compileHelper( 125 std::string compileHelper(
126 std::string separator, 126 std::string separator,
127 bool definiteArticle, 127 bool indefiniteArticle,
128 casing capitalization) const; 128 casing capitalization) const;
129 129
130 enum class transform_type { 130 enum class transform_type {
131 separator, 131 separator,
132 punctuation, 132 punctuation,
133 definite_article, 133 indefinite_article,
134 capitalize 134 capitalize
135 }; 135 };
136 136