Skip to content

Commit

Permalink
clean up some whitespace (#1372)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp authored Feb 16, 2024
1 parent 0830091 commit 9197c1e
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ private static string GetFourDigitOrdinal(int number)
}

return thousandsString;

}

private string ConvertImpl(long number, bool returnPluralized)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,6 @@ private static string GetPrefixText(long thousands, long tensInThousands, string
}

return $"{GetHundreds(thousands, true, usePrefixMapForLowerValueDigits, gender)} {plural}";

}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ private static string GetCroresValue(ref long number)

number %= 10000000;
return local_word;

}

private static string GetThousandsValue(ref long number)
{
var num_above_10 = number / 1000;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ public override string Convert(int number, string numberString, GrammaticalGende
}

return $"al {numberString}-lea";

}
}
}
1 change: 0 additions & 1 deletion src/Humanizer/ToQuantityExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ public static string ToQuantity(this string input, double quantity, string forma
: input.Pluralize(inputIsKnownToBeSingular: false);

return string.Format(formatProvider, "{0} {1}", quantity.ToString(format, formatProvider), transformedInput);

}

/// <summary>
Expand Down

0 comments on commit 9197c1e

Please sign in to comment.