Subject: | Method name "heiseg" should be "heisig" |
Hey Andy,
One of the methods on kanji definition objects is misspelled. It is the
"heiseg" method which should actually be "heisig". If you look at the
documentation for this module it says:
* heiseg
The index number used in "Remembering The Kanji" by James Heisig.
It's spelled correctly in the author's name, but not in the code or the
=item. :) See http://en.wikipedia.org/wiki/James_Heisig
http://www.amazon.com/Remembering-Kanji-Complete-Japanese-Characters/dp/4889960759
etc.
To avoid breaking back-compat it's probably worth doing "sub heisig {
shift->heiseg(@_) }" (rather than change the internal key name and
provide the heiseg method as back-compat), since some users might be
digging directly into the hashref. Up to you, of course.
Thanks!
Shawn