Core/Unicode: Fix letters category

This commit is contained in:
Lynix 2018-07-31 19:49:51 +02:00
parent d91c48ab50
commit 271f7202ed
1 changed files with 2 additions and 2 deletions

View File

@ -157,7 +157,7 @@ namespace Nz
case 'X':
case 'Y':
case 'Z':
return Category_Number_DecimalDigit;
return Category_Letter_Uppercase;
case '_':
return Category_Punctuation_Connector;
@ -192,7 +192,7 @@ namespace Nz
case 'x':
case 'y':
case 'z':
return Category_Number_DecimalDigit;
return Category_Letter_Lowercase;
default:
break;