Skip to content

Commit e8441f2

Browse files
authored
Change DefaultHumanizer class to public
1 parent 3534a37 commit e8441f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/TestStack.BDDfy/DefaultHumanizer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace TestStack.BDDfy
99
{
10-
internal partial class DefaultHumanizer: IHumanizer
10+
public partial class DefaultHumanizer: IHumanizer
1111
{
1212
static readonly Func<string, string> FromUnderscoreSeparatedWords = methodName => string.Join(" ", methodName.Split(new[] { '_' }));
1313
static string FromPascalCase(string name)
@@ -78,4 +78,4 @@ public string Humanize(string input)
7878
[GeneratedRegex("__([a-zA-Z][a-zA-Z0-9]*)__")]
7979
private static partial Regex TitleCleanerRegex();
8080
}
81-
}
81+
}

0 commit comments

Comments
 (0)