This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlobj: Fix pod problems
authorKarl Williamson <public@khwilliamson.com>
Sat, 17 Sep 2011 18:43:57 +0000 (12:43 -0600)
committerKarl Williamson <public@khwilliamson.com>
Sat, 17 Sep 2011 18:47:01 +0000 (12:47 -0600)
introduced by 7168b2511bddd4967be30033b32ce8b1b6500f6d

pod/perlobj.pod

index 4764906..0280c62 100644 (file)
@@ -297,9 +297,11 @@ use it for regular subroutine calls or class methods:
 
   SUPER::save($thing);     # FAIL: looks for save() sub in package SUPER
 
-  SUPER->save($thing);     # FAIL: looks for save() method in class SUPER
+  SUPER->save($thing);     # FAIL: looks for save() method in class
+                           #       SUPER
 
-  $thing->SUPER::save();   # Okay: looks for save() method in parent classes
+  $thing->SUPER::save();   # Okay: looks for save() method in parent
+                           #       classes
 
 
 =head3 How SUPER is Resolved