diff options
author | Chip Salzenberg <chip@atlantic.net> | 1997-04-09 00:00:00 +0000 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-04-09 00:00:00 +0000 |
commit | 93e318e6dad8ee9af1e1d5013cc7d41aee2d85ed (patch) | |
tree | a4cb1b69da5852aa09b5eee070ad07854e1997d7 | |
parent | a99df21cfa7a5a885ca7e0b0c7aca7e984889792 (diff) | |
download | perl-93e318e6dad8ee9af1e1d5013cc7d41aee2d85ed.tar.gz |
Freudian slip error in perlsub.pod
(this is the same change as commit b7a03ccba4c2b93b96002aca9f411649e099dcc0, but as applied)
-rw-r--r-- | pod/perlsub.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlsub.pod b/pod/perlsub.pod index 602e5c0dda..7cdd893ef4 100644 --- a/pod/perlsub.pod +++ b/pod/perlsub.pod @@ -383,7 +383,7 @@ If this function is being sourced in from a separate file via C<require> or C<use>, then this is probably just fine. If it's all in the main program, you'll need to arrange for the my() to be executed early, either by putting the whole block above -your pain program, or more likely, placing merely a BEGIN +your main program, or more likely, placing merely a BEGIN sub around it to make sure it gets executed before your program starts to run: |