RadLikeWhoa / Countable

Add live paragraph-, word- and character-counting to an HTML element.
https://sacha.me/Countable
MIT License
1.64k stars 134 forks source link

README.md refering old function name #60

Closed phena109 closed 5 years ago

phena109 commented 5 years ago

The code sample in the 'Countable.count(elements, callback, options)' section written:

Countable.once(area, counter => console.log(counter))

It should be the following as of 3.0 or later

Countable.count(area, counter => console.log(counter))
RadLikeWhoa commented 5 years ago

Fixed. Thanks for the heads-up.