Skip to content

Commit

Permalink
"Trilionths" -> "Trillionths" typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacharyPatten committed Jul 18, 2021
1 parent 3a23087 commit cacb3ec
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Sources/Towel/Extensions-NumericEnglishWords.cs
Expand Up @@ -34,9 +34,9 @@ public static partial class Extensions
/* 9 */ "Billionths",
/* 10 */ "Ten-Billionths",
/* 11 */ "Hundred-Billionths",
/* 12 */ "Trilionths",
/* 13 */ "Ten-Trilionths",
/* 14 */ "Hundred-Trilionths",
/* 12 */ "Trillionths",
/* 13 */ "Ten-Trillionths",
/* 14 */ "Hundred-Trillionths",
/* 15 */ "Quadrillionths",
/* 16 */ "Ten-Quadrillionths",
/* 17 */ "Hundred-Quadrillionths",
Expand Down Expand Up @@ -264,6 +264,5 @@ void DigitGroup(char hundredsDigit, char tensDigit, char onesDigit)
/// <param name="ushort">The <see cref="ushort"/> value to convert to English words <see cref="string"/> representation.</param>
/// <returns>The English words <see cref="string"/> representation of the <see cref="ushort"/> value.</returns>
public static string ToEnglishWords(this ushort @ushort) => ToEnglishWords(@ushort.ToString(System.Globalization.CultureInfo.InvariantCulture));

}
}

0 comments on commit cacb3ec

Please sign in to comment.