Fix a minor nit regarding Exporter.
Perl 5 Porters [Sun, 25 Aug 1996 00:08:57 +0000 (00:08 +0000)]
pod/perlmod.pod

index 9aa4729..9a1f222 100644 (file)
@@ -201,8 +201,8 @@ symbols.  Or it can do a little of both.
 For example, to start a normal module called Fred, create
 a file called Fred.pm and put this at the start of it:
 
-    package     Fred;
-    require     Exporter;
+    package Fred;
+    use Exporter ();
     @ISA       = qw(Exporter);
     @EXPORT    = qw(func1 func2);
     @EXPORT_OK = qw($sally @listabob %harry func3);