panzerdp / voca

The ultimate JavaScript string library
https://vocajs.pages.dev
MIT License
3.6k stars 136 forks source link

Update example in lower_case.js to conform to spec #10

Closed KyleJSummers closed 7 years ago

KyleJSummers commented 7 years ago

Update the example in lower_case.js to reflect the correct output from the lowerCase method.

Related issue

https://github.com/panzerdp/voca/issues/9

Description

Documentation example shows:

v.lowerCase('BLUE');
// => 'BLUE'

which should be

v.lowerCase('BLUE');
// => 'blue'

Updated the example in the JSDoc string to reflect the correct output.

Check List