Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clean up some whitespace #1372

Merged
merged 1 commit into from
Feb 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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