From: Dan Boorstein Date: Sat, 14 Oct 2000 14:29:24 +0000 (-0400) Subject: small pod patch X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3da4c8f2bb5805b60be2a68f328cee40e3ac3680;p=p5sagit%2Fp5-mst-13.2.git small pod patch Message-ID: <39E8A604.B501DB4F@bellsouth.net> p4raw-id: //depot/perl@7241 --- diff --git a/pod/perlfaq7.pod b/pod/perlfaq7.pod index 1ca7893..0d4876f 100644 --- a/pod/perlfaq7.pod +++ b/pod/perlfaq7.pod @@ -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; diff --git a/pod/perlmod.pod b/pod/perlmod.pod index a9a8756..6f98cf6 100644 --- a/pod/perlmod.pod +++ b/pod/perlmod.pod @@ -310,6 +310,10 @@ create a file called F 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;