Skip to content
Prev Previous commit
Next Next commit
Update src/coreclr/System.Private.CoreLib/Tools/GenUnicodeProp/Catego…
…ryCasingInfo.cs

Co-authored-by: Santiago Fernandez Madero <[email protected]>
  • Loading branch information
tarekgh and safern authored Jul 13, 2021
commit 4b230b0918d1136f27a14ea488be9d7448b4d50f
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public CategoryCasingInfo(CodePoint codePoint)
break;
}

// For the compatability reasons we are not mapping the Turkish I's nor Latin small letter long S with invariant casing.
// For compatibility reasons we are not mapping the Turkish I's nor Latin small letter long S with invariant casing.
if (Program.IncludeCasingData && codePoint.Value != 0x0130 && codePoint.Value != 0x0131 && codePoint.Value != 0x017f)
{
_data.offsetToSimpleUppercase = (ushort)(codePoint.SimpleUppercaseMapping - codePoint.Value);
Expand Down