Skip to content

Commit

Permalink
Remove comments and excess spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
AKTheKnight committed Mar 11, 2019
1 parent 2235a81 commit 46e8236
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/Humanizer/InflectorExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,8 @@ public static string Titleize(this string input)
/// <param name="removeWhiteSpace">"This has a space" -> "ThisHasASpace" if true</param>
/// <returns></returns>
public static string Pascalize(this string input)
{

{
return Regex.Replace(input, "(?:^|_| +)(.)", match => match.Groups[1].Value.ToUpper());

//return Regex.Replace(input, @"\s+", "");
}

/// <summary>
Expand Down

0 comments on commit 46e8236

Please sign in to comment.