From c45a877c23722bd0912aa2e79b41af12bba7de25 Mon Sep 17 00:00:00 2001 From: Ryan Morrin Date: Thu, 28 May 2015 15:32:05 +0100 Subject: [PATCH] Fix typo StringExentions -> StringExtensions --- .../PublicApiApprovalTest.approve_public_api.approved.txt | 2 +- src/Humanizer/Humanizer.csproj | 2 +- src/Humanizer/{StringExentions.cs => StringExtentions.cs} | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename src/Humanizer/{StringExentions.cs => StringExtentions.cs} (96%) diff --git a/src/Humanizer.Tests/ApiApprover/PublicApiApprovalTest.approve_public_api.approved.txt b/src/Humanizer.Tests/ApiApprover/PublicApiApprovalTest.approve_public_api.approved.txt index 8c08df24c..d40e48f6c 100644 --- a/src/Humanizer.Tests/ApiApprover/PublicApiApprovalTest.approve_public_api.approved.txt +++ b/src/Humanizer.Tests/ApiApprover/PublicApiApprovalTest.approve_public_api.approved.txt @@ -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) { } diff --git a/src/Humanizer/Humanizer.csproj b/src/Humanizer/Humanizer.csproj index 1a1db208b..74a004964 100644 --- a/src/Humanizer/Humanizer.csproj +++ b/src/Humanizer/Humanizer.csproj @@ -143,7 +143,7 @@ - + diff --git a/src/Humanizer/StringExentions.cs b/src/Humanizer/StringExtentions.cs similarity index 96% rename from src/Humanizer/StringExentions.cs rename to src/Humanizer/StringExtentions.cs index 7b119f4bd..a35c47534 100644 --- a/src/Humanizer/StringExentions.cs +++ b/src/Humanizer/StringExtentions.cs @@ -5,7 +5,7 @@ namespace Humanizer /// /// Extension methods for String type. /// - public static class StringExentions + public static class StringExtentions { /// /// Extension method to format string with passed arguments. Current thread's current culture is used