diff --git a/src/Umbraco.Core/Strings/Utf8ToAsciiConverter.cs b/src/Umbraco.Core/Strings/Utf8ToAsciiConverter.cs
index 91dd5a7597..54ca74d20f 100644
--- a/src/Umbraco.Core/Strings/Utf8ToAsciiConverter.cs
+++ b/src/Umbraco.Core/Strings/Utf8ToAsciiConverter.cs
@@ -17,7 +17,7 @@ namespace Umbraco.Core.Strings
/// Converts an Utf8 string into an Ascii string.
///
/// The text to convert.
- /// The character to used to replace characters that cannot properly be converted.
+ /// The character to use to replace characters that cannot properly be converted.
/// The converted text.
public static string ToAsciiString(string text, char fail = '?')
{
@@ -39,7 +39,7 @@ namespace Umbraco.Core.Strings
/// Converts an Utf8 string into an array of Ascii characters.
///
/// The text to convert.
- /// The character to used to replace characters that cannot properly be converted.
+ /// The character to use to replace characters that cannot properly be converted.
/// The converted text.
public static char[] ToAsciiCharArray(string text, char fail = '?')
{
@@ -66,7 +66,7 @@ namespace Umbraco.Core.Strings
///
/// The input array.
/// The output array.
- /// The character to used to replace characters that cannot properly be converted.
+ /// The character to use to replace characters that cannot properly be converted.
/// The number of characters in the output array.
/// The caller must ensure that the output array is big enough.
/// The output array is not big enough.
@@ -112,7 +112,7 @@ namespace Umbraco.Core.Strings
/// The input position.
/// The output array.
/// The output position.
- /// The character to used to replace characters that cannot properly be converted.
+ /// The character to use to replace characters that cannot properly be converted.
///
/// Adapted from various sources on the 'net including Lucene.Net.Analysis.ASCIIFoldingFilter.
/// Input should contain Utf8 characters exclusively and NOT Unicode.