Skip to content

Commit

Permalink
#1245: Replace the greek (B) "Beta" char to a regular B in methods as…
Browse files Browse the repository at this point in the history
… very latest visual studio is more sensitive somehow to character encodings (#1246)
  • Loading branch information
vilinet authored Feb 12, 2024
1 parent 37e34d4 commit 7491330
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ private string ConvertImpl(long number, bool returnPluralized)
{
if (number < 13)
{
return ConvertIntΒ13(number, returnPluralized);
return ConvertIntB13(number, returnPluralized);
}
else if (number < 100)
{
Expand All @@ -179,7 +179,7 @@ private string ConvertImpl(long number, bool returnPluralized)
return "";
}

private string ConvertIntΒ13(long number, bool returnPluralized)
private string ConvertIntB13(long number, bool returnPluralized)
{
return returnPluralized ? UnitsMap[number] : UnitMap[number];
}
Expand Down

0 comments on commit 7491330

Please sign in to comment.