Skip to content

Commit

Permalink
Merge pull request #425 from rmorrin/master
Browse files Browse the repository at this point in the history
Fix typo (again) StringExtentions -> StringExtensions
  • Loading branch information
MehdiK committed Jun 6, 2015
2 parents b831b10 + a675b66 commit 86f4fda
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 StringExtentions
public class StringExtensions
{
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="StringExtentions.cs" />
<Compile Include="StringExtensions.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 StringExtentions
public static class StringExtensions
{
/// <summary>
/// Extension method to format string with passed arguments. Current thread's current culture is used
Expand Down

0 comments on commit 86f4fda

Please sign in to comment.