Skip to content

Commit

Permalink
Updated API doc
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherie authored and Oren Novotny committed Mar 13, 2019
1 parent 4da1ac9 commit e453139
Showing 1 changed file with 15 additions and 0 deletions.
Expand Up @@ -1041,6 +1041,21 @@ namespace Humanizer
{
public static string Tupleize(this int input) { }
}
public enum EnglishArticles
{
a,
an,
the,
A,
An,
The
}
public static class EnglishArticle
{
public static string[] AppendArticlePrefix(string[] items) { }
public static string[] PrependArticleSuffix(string[] appended) { }
private static string ToOriginalFormat(string[] appended, string suffix, int i) { }
}
}
namespace Humanizer.Configuration
{
Expand Down

0 comments on commit e453139

Please sign in to comment.