@@ -27,7 +27,7 @@ const pluralLib = require('plural')
*/
const plural = text => {
- words = title(text).split(' ')
+ const words = title(text).split(' ')
words[words.length - 1] = pluralLib(words[words.length - 1].toLowerCase())
return words.join(' ')
}