locales icon indicating copy to clipboard operation
locales copied to clipboard

Readme is incorrect for OrdinalPluralRule

Open kumarharsh opened this issue 6 years ago • 0 comments

In the Readme, it's mentioned that:

fmt.Println(l.OrdinalPluralRule(21, 0)) // 21st
fmt.Println(l.OrdinalPluralRule(22, 0)) // 22nd
fmt.Println(l.OrdinalPluralRule(33, 0)) // 33rd
fmt.Println(l.OrdinalPluralRule(34, 0)) // 34th

But the actual output is:

One
Two
Few
Other

kumarharsh avatar Apr 17 '18 07:04 kumarharsh