Skip to content

Commit

Permalink
Merge pull request #184 from thunsaker/en-FourthCorrection
Browse files Browse the repository at this point in the history
Fixed spelling error with forth/fourth in EnglishNumberToWordsConverter
  • Loading branch information
MehdiK committed Apr 11, 2014
2 parents 722dd75 + 5158997 commit 5a19340
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- [#155](https://github.com/MehdiK/Humanizer/pull/155): French and Belgian French localisation
- [#151](https://github.com/MehdiK/Humanizer/pull/151): Added Spanish ToWords Translations
- [#172](https://github.com/MehdiK/Humanizer/pull/172): Added Polish translation for ToWords
- [#184](https://github.com/Mehdik/Humanizer/pull/184): Fixed spelling error with forth/fourth in EnglishNumberToWordsConverter

[Commits](https://github.com/MehdiK/Humanizer/compare/v1.19.1...master)

Expand Down
2 changes: 1 addition & 1 deletion src/Humanizer.Tests/NumberToOrdinalWordsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class NumberToOrdinalWordsTests
[InlineData(1, "first")]
[InlineData(2, "second")]
[InlineData(3, "third")]
[InlineData(4, "forth")]
[InlineData(4, "fourth")]
[InlineData(5, "fifth")]
[InlineData(6, "sixth")]
[InlineData(7, "seventh")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ internal class EnglishNumberToWordsConverter : INumberToWordsConverter
{1, "first"},
{2, "second"},
{3, "third"},
{4, "forth"},
{4, "fourth"},
{5, "fifth"},
{8, "eighth"},
{9, "ninth"},
Expand Down

0 comments on commit 5a19340

Please sign in to comment.