diff options
author | Giovanni Tataranni <gtataranni@users.noreply.github.com> | 2020-11-06 14:25:21 +0100 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2020-11-16 09:33:14 +1100 |
commit | 54525b93d52a52326368ccf8a330d5b2d1e56089 (patch) | |
tree | fe3b5d7ec1a1e8161717ded0808d63ca76b30d7d | |
parent | e207d6495b6cf122726e0f05a14616be7cac9c74 (diff) | |
download | perl-54525b93d52a52326368ccf8a330d5b2d1e56089.tar.gz |
fix typo in pod/perlfunc.pod
-rw-r--r-- | pod/perlfunc.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 37583f23e6..d509eee584 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -5856,7 +5856,7 @@ symbol table the compiler uses for the rest of that block. You can refer to identifiers in other packages than the current one by prefixing the identifier with the package name and a double colon, as in C<$SomePack::var> or C<ThatPack::INPUT_HANDLE>. If package name is omitted, the C<main> -package as assumed. That is, C<$::sail> is equivalent to +package is assumed. That is, C<$::sail> is equivalent to C<$main::sail> (as well as to C<$main'sail>, still seen in ancient code, mostly from Perl 4). |