Skip to content

Commit

Permalink
Fix typo StringExentions -> StringExtensions
Browse files Browse the repository at this point in the history
  • Loading branch information
rmorrin committed May 28, 2015
1 parent c733622 commit c45a877
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ public class StringDehumanizeExtensions
public string Dehumanize(string input) { }
}

public class StringExentions
public class StringExtentions
{
public string FormatWith(string format, object[] args) { }
public string FormatWith(string format, System.IFormatProvider provider, object[] args) { }
Expand Down
2 changes: 1 addition & 1 deletion src/Humanizer/Humanizer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
<Compile Include="OnNoMatch.cs" />
<Compile Include="NoMatchFoundException.cs" />
<Compile Include="RomanNumeralExtensions.cs" />
<Compile Include="StringExentions.cs" />
<Compile Include="StringExtentions.cs" />
<Compile Include="ToQuantityExtensions.cs" />
<Compile Include="Transformer\To.cs" />
<Compile Include="Transformer\IStringTransformer.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Humanizer
/// <summary>
/// Extension methods for String type.
/// </summary>
public static class StringExentions
public static class StringExtentions
{
/// <summary>
/// Extension method to format string with passed arguments. Current thread's current culture is used
Expand Down

2 comments on commit c45a877

@cristianst85
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Still not fixed StringExtentions[.cs] should be StringExtensions[.cs]

@hazzik
Copy link
Member

@hazzik hazzik commented on c45a877 Jun 4, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cristianst85 nice catch

Please sign in to comment.