small pod patch
Dan Boorstein [Sat, 14 Oct 2000 14:29:24 +0000 (10:29 -0400)]
Message-ID: <39E8A604.B501DB4F@bellsouth.net>

p4raw-id: //depot/perl@7241

pod/perlfaq7.pod
pod/perlmod.pod

index 1ca7893..0d4876f 100644 (file)
@@ -196,6 +196,10 @@ own module.  Make sure to change the names appropriately.
     }
     our @EXPORT_OK;
 
+    # exported package globals go here
+    our $Var1;
+    our %Hashit;
+
     # non-exported package globals go here
     our @more;
     our $stuff;
index a9a8756..6f98cf6 100644 (file)
@@ -310,6 +310,10 @@ create a file called F<Some/Module.pm> and start with this template:
     }
     our @EXPORT_OK;
 
+    # exported package globals go here
+    our $Var1;
+    our %Hashit;
+
     # non-exported package globals go here
     our @more;
     our $stuff;