summary refs log tree commit diff stats
path: root/lib/token.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-11-08 11:36:50 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-11-08 11:36:50 -0500
commitc29f3645c9298dcb203f7414986604b89843e9ef (patch)
tree5578b1c4c825c455435c160fbcb5e7d02907c1ed /lib/token.h
parentbea545d62732fe048ca9cec7f82e4be1185cb87b (diff)
downloadverbly-c29f3645c9298dcb203f7414986604b89843e9ef.tar.gz
verbly-c29f3645c9298dcb203f7414986604b89843e9ef.tar.bz2
verbly-c29f3645c9298dcb203f7414986604b89843e9ef.zip
Renamed definiteArticle token to indefiniteArticle
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