Subject: | to_S converts 'statuses' to 'statuse'. |
to_S incorrectly renders the singular of "statuses" as "statuse." Run the attached script to
reproduce the problem.
Subject: | lein-bug.pl |
#!/usr/bin/env perl
use strict;
use warnings;
use Lingua::EN::Inflect::Number 'to_S';
print to_S('statuses'), "\n";