summaryrefslogtreecommitdiff
path: root/pod/perlmod.pod
diff options
context:
space:
mode:
authorPeter J. Acklam) (via RT <perlbug-followup@perl.org>2011-01-06 23:14:00 -0800
committerAbigail <abigail@abigail.be>2011-01-07 11:21:48 +0100
commitc69ca1d4c45d8f9405e06ad3419c8ab43c8ae1d0 (patch)
tree5901edce96f54f37cc26a2c3591fbe0428626de9 /pod/perlmod.pod
parent93f09d7ba52fad6ba827274ee4fa13235edb2b44 (diff)
downloadperl-c69ca1d4c45d8f9405e06ad3419c8ab43c8ae1d0.tar.gz
Fix typos in pod/*
# New Ticket Created by (Peter J. Acklam) # Please include the string: [perl #81906] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=81906 >
Diffstat (limited to 'pod/perlmod.pod')
-rw-r--r--pod/perlmod.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlmod.pod b/pod/perlmod.pod
index 7c5358f937..1a166a8f58 100644
--- a/pod/perlmod.pod
+++ b/pod/perlmod.pod
@@ -571,7 +571,7 @@ like for example handle the cloning of non-Perl data, if necessary.
C<CLONE> will be called once as a class method for every package that has it
defined (or inherits it). It will be called in the context of the new thread,
so all modifications are made in the new area. Currently CLONE is called with
-no parameters other than the invocant package name, but code should not assume
+no parameters other than the invocand package name, but code should not assume
that this will remain unchanged, as it is likely that in future extra parameters
will be passed in to give more information about the state of cloning.
@@ -593,7 +593,7 @@ to make use of the objects, then a more sophisticated approach is
needed.
Like C<CLONE>, C<CLONE_SKIP> is currently called with no parameters other
-than the invocant package name, although that may change. Similarly, to
+than the invocand package name, although that may change. Similarly, to
allow for future expansion, the return value should be a single C<0> or
C<1> value.