diff --git a/src/Controls/src/Core/Platform/iOS/Extensions/TextExtensions.cs b/src/Controls/src/Core/Platform/iOS/Extensions/TextExtensions.cs index 73f44ac7f853..1dda2520a764 100644 --- a/src/Controls/src/Core/Platform/iOS/Extensions/TextExtensions.cs +++ b/src/Controls/src/Core/Platform/iOS/Extensions/TextExtensions.cs @@ -42,8 +42,8 @@ static void UpdateText(this IUITextInput textInput, InputView inputView, bool is var textRange = textInput.GetTextRange(textInput.BeginningOfDocument, textInput.EndOfDocument); var oldText = textInput.TextInRange(textRange) ?? string.Empty; - // We need this variable because in some cases because of the iOS's - // auto correction eg. eg '--' => '—' the actual text in the input might have + // We need this variable in some cases because of the iOS's + // auto correction eg. '--' => '—' the actual text in the input might have // a different length that the one that has been set in the control. var newTextLength = textInput.TextInRange(textRange)?.Length ?? 0;