Skip to content

Commit

Permalink
remove some redundant verbatim prefix (#1373)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp authored Feb 16, 2024
1 parent 9197c1e commit b2826a8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ private void ToBigNumber(int number, Group group, List<string> parts)
// Big numbers (million and above) always use the masculine form
// See https://www.safa-ivrit.org/dikduk/numbers.php

var digits = number / (int)@group;
var digits = number / (int)group;
if (digits == 2)
{
parts.Add("שני");
Expand All @@ -128,7 +128,7 @@ private void ToBigNumber(int number, Group group, List<string> parts)
parts.Add(Convert(digits, GrammaticalGender.Masculine));
}

parts.Add(@group.Humanize());
parts.Add(group.Humanize());
}

private void ToThousands(int number, List<string> parts)
Expand Down

0 comments on commit b2826a8

Please sign in to comment.