Subject: | Minor typos in Synopsis |
Date: | Fri, 27 Oct 2017 15:25:31 +0200 (CEST) |
To: | bug-Lingua-EN-Inflect [...] rt.cpan.org |
From: | Kornel Umann <perl [...] umann.hu> |
Line 141: print inflect("I saw $cat_count PL("cat",$cat_count)\n");
"cat" should not be quoted. Changinig external qoutes to qq{}
prints q{"cat"s} - yet another feature to think of...
Line 144: print inflect("I saw NUM($cat_count) PL("cat")\nNUM()");
Same applies here. Also, NUM() should be before \n.
Line 146: print inflect("There NUM($errors,) PL_V(was) NO(error)\n";
Missing closing bracket. Also, there should be no space after
NUM($errors,) because now it prints two spaces between "There" and
"was"/"were".
Lines 142, 143 (, 144): Would be nice to append \n.
Lines 157, 159, 161, 163: Missing semicolon at the end of def_...
commands.