You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would expect humanize.intword(1000001) to at least return the same as humanize.intword(1000000).
Since I think the singular case only applies when the number is exactly 1.0, I think it would be better to return "Eine Million" in both cases.
What actually happened?
The function rounded the integer to 1.0 but chose plural/singular according to the number before it was rounded.
What did you do?
Execute
What did you expect to happen?
I would expect
humanize.intword(1000001)
to at least return the same ashumanize.intword(1000000)
.Since I think the singular case only applies when the number is exactly 1.0, I think it would be better to return "Eine Million" in both cases.
What actually happened?
The function rounded the integer to 1.0 but chose plural/singular according to the number before it was rounded.
What versions are you using?
The text was updated successfully, but these errors were encountered: