From c29f3645c9298dcb203f7414986604b89843e9ef Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Wed, 8 Nov 2017 11:36:50 -0500 Subject: Renamed definiteArticle token to indefiniteArticle --- lib/token.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/token.h') 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 { static token separator(std::string param, token inner); static token punctuation(std::string param, token inner); - static token definiteArticle(token inner); + static token indefiniteArticle(token inner); static token capitalize(casing param, token inner); token& getInnerToken(); @@ -124,13 +124,13 @@ namespace verbly { std::string compileHelper( std::string separator, - bool definiteArticle, + bool indefiniteArticle, casing capitalization) const; enum class transform_type { separator, punctuation, - definite_article, + indefinite_article, capitalize }; -- cgit 1.4.1