summaryrefslogtreecommitdiff
path: root/pod/perlpacktut.pod
diff options
context:
space:
mode:
authorAudrey Tang <cpan@audreyt.org>2001-12-29 09:59:28 +0800
committerJarkko Hietaniemi <jhi@iki.fi>2001-12-29 15:09:00 +0000
commitfe854a6f990f7776a8ee8bd28f02e1bd36e5bb58 (patch)
tree1652104bde99b9156bc0dd94cc9643a8c6b78fbe /pod/perlpacktut.pod
parent2948e0bde4eb0485569b1f3510975019a89a444f (diff)
downloadperl-fe854a6f990f7776a8ee8bd28f02e1bd36e5bb58.tar.gz
Module names and other nits
Message-ID: <20011229015928.A29712@geb.elixus.org> p4raw-id: //depot/perl@13922
Diffstat (limited to 'pod/perlpacktut.pod')
-rw-r--r--pod/perlpacktut.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlpacktut.pod b/pod/perlpacktut.pod
index 93ec186a43..423ab03ae1 100644
--- a/pod/perlpacktut.pod
+++ b/pod/perlpacktut.pod
@@ -727,7 +727,7 @@ call, creating the items we intend to stuff into the C<$env> buffer:
to each key (in C<$_>) it adds the C<=> separator and the hash entry value.
Each triplet is packed with the template code sequence C<A*A*Z*> that
is multiplied with the number of keys. (Yes, that's what the C<keys>
-function resturns in scalar context.) To get the very last null byte,
+function returns in scalar context.) To get the very last null byte,
we add a C<0> at the end of the C<pack> list, to be packed with C<C>.
(Attentive readers may have noticed that we could have omitted the 0.)