diff options
Diffstat (limited to 'pod/perlmod.pod')
-rw-r--r-- | pod/perlmod.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlmod.pod b/pod/perlmod.pod index 29f9059220..0b384ab35c 100644 --- a/pod/perlmod.pod +++ b/pod/perlmod.pod @@ -1106,7 +1106,7 @@ Inherit methods from other modules if appropriate. Avoid class name tests like: C<die "Invalid" unless ref $ref eq 'FOO'>. Generally you can delete the "C<eq 'FOO'>" part with no harm at all. -Let the objects look after themselves! Generally, avoid hardwired +Let the objects look after themselves! Generally, avoid hard-wired class names as far as possible. Avoid C<$r-E<gt>Class::func()> where using C<@ISA=qw(... Class ...)> and |