diff options
author | Dan Boorstein <dan_boo@bellsouth.net> | 2000-10-14 10:29:24 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-10-16 02:22:44 +0000 |
commit | 3da4c8f2bb5805b60be2a68f328cee40e3ac3680 (patch) | |
tree | 44b26ccfda6bb413410569d610dc4d32666946c2 /pod/perlfaq7.pod | |
parent | 0a911d86da56c706ebc19e3b3677267e042023b7 (diff) | |
download | perl-3da4c8f2bb5805b60be2a68f328cee40e3ac3680.tar.gz |
small pod patch
Message-ID: <39E8A604.B501DB4F@bellsouth.net>
p4raw-id: //depot/perl@7241
Diffstat (limited to 'pod/perlfaq7.pod')
-rw-r--r-- | pod/perlfaq7.pod | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pod/perlfaq7.pod b/pod/perlfaq7.pod index 1ca7893f13..0d4876fd68 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; |