summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiovanni Tataranni <gtataranni@users.noreply.github.com>2020-11-06 14:25:21 +0100
committerTony Cook <tony@develop-help.com>2020-11-16 09:33:14 +1100
commit54525b93d52a52326368ccf8a330d5b2d1e56089 (patch)
treefe3b5d7ec1a1e8161717ded0808d63ca76b30d7d
parente207d6495b6cf122726e0f05a14616be7cac9c74 (diff)
downloadperl-54525b93d52a52326368ccf8a330d5b2d1e56089.tar.gz
fix typo in pod/perlfunc.pod
-rw-r--r--pod/perlfunc.pod2
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).