in reply to detecting improperly called subroutines
If you try to call the misspelled method at runtime, you'll get a "can't locate object method..." error. You can trap those errors if you wish by defining an AUTOLOAD subroutine in your class; AUTOLOAD gets called when no other method in the class (or its ancestors) matches.
|
|---|