summaryrefslogtreecommitdiff
path: root/pod/perlhack.pod
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2000-08-30 02:12:50 +0100
committerJarkko Hietaniemi <jhi@iki.fi>2000-08-30 14:46:34 +0000
commitb1866b2db57c4aa1ee77325f2658722f6a7befa2 (patch)
tree5b73a85e97374f778ffcc77bff341c3ba1435d8a /pod/perlhack.pod
parent24e657a8ecba3e48980c1390adb658d9f9ad69f5 (diff)
downloadperl-b1866b2db57c4aa1ee77325f2658722f6a7befa2.tar.gz
typos in pods
Message-ID: <20000830011249.A61388@plum.flirble.org> p4raw-id: //depot/perl@6917
Diffstat (limited to 'pod/perlhack.pod')
-rw-r--r--pod/perlhack.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlhack.pod b/pod/perlhack.pod
index 4d2545d0e7..65188becf7 100644
--- a/pod/perlhack.pod
+++ b/pod/perlhack.pod
@@ -568,7 +568,7 @@ make sure that the SV B<has> a valid PV, by calling the C<SvPV_force>
macro to force a PV. As a side effect, C<tlen> gets set to the current
value of the PV, and the PV itself is returned to C<junk>.
-In line 7, we make sure that the SV will have enough room to accomodate
+In line 7, we make sure that the SV will have enough room to accommodate
the old string, the new string and the null terminator. If C<LEN> isn't
big enough, C<SvGROW> will reallocate space for us.
@@ -1230,7 +1230,7 @@ the first active format:
sprintf "%vd", pack("C0U*",1,20,300,4000);
print "ok $test\n"; $test++;
-Musn't forget to change the number of tests which appears at the top, or
+Mustn't forget to change the number of tests which appears at the top, or
else the automated tester will get confused:
-print "1..156\n";