summaryrefslogtreecommitdiff
path: root/pod/perlmod.pod
diff options
context:
space:
mode:
authorDan Boorstein <dan_boo@bellsouth.net>2000-10-14 10:29:24 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2000-10-16 02:22:44 +0000
commit3da4c8f2bb5805b60be2a68f328cee40e3ac3680 (patch)
tree44b26ccfda6bb413410569d610dc4d32666946c2 /pod/perlmod.pod
parent0a911d86da56c706ebc19e3b3677267e042023b7 (diff)
downloadperl-3da4c8f2bb5805b60be2a68f328cee40e3ac3680.tar.gz
small pod patch
Message-ID: <39E8A604.B501DB4F@bellsouth.net> p4raw-id: //depot/perl@7241
Diffstat (limited to 'pod/perlmod.pod')
-rw-r--r--pod/perlmod.pod4
1 files changed, 4 insertions, 0 deletions
diff --git a/pod/perlmod.pod b/pod/perlmod.pod
index a9a87562a8..6f98cf6d99 100644
--- a/pod/perlmod.pod
+++ b/pod/perlmod.pod
@@ -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;