diff options
author | Keith Thompson <kst@mib.org> | 2011-07-29 17:17:00 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-07-31 13:21:17 -0700 |
commit | 7698aede74509727f7bca31c58fc7a53b182315d (patch) | |
tree | 64b172a6f17739c4233a988700ac2d95d17d6c92 /pod/perlglossary.pod | |
parent | dcfe4a1a1f7d8d2807eecaeae5cb1d84d060af3c (diff) | |
download | perl-7698aede74509727f7bca31c58fc7a53b182315d.tar.gz |
Fix typos in several pod/perl*.pod files
Diffstat (limited to 'pod/perlglossary.pod')
-rw-r--r-- | pod/perlglossary.pod | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pod/perlglossary.pod b/pod/perlglossary.pod index 2389872ca1..4d8bf00e44 100644 --- a/pod/perlglossary.pod +++ b/pod/perlglossary.pod @@ -507,7 +507,7 @@ the class (its L<objects|/object>). See also L</inheritance>. =item class method -A L</method> whose L</invocand> is a L</package> name, not an +A L</method> whose L</invocant> is a L</package> name, not an L</object> reference. A method associated with the class as a whole. =item client @@ -1470,7 +1470,7 @@ Perl, C<print STDOUT "$foo\n";> can be understood as "verb indirect-object object" where L</STDOUT> is the recipient of the L<print|perlfunc/print> action, and C<"$foo"> is the object being printed. Similarly, when invoking a L</method>, you might place the -invocand between the method and its arguments: +invocant between the method and its arguments: $gollum = new Pathetic::Creature "Smeagol"; give $gollum "Fisssssh!"; @@ -1548,11 +1548,11 @@ of compiler that takes a program and turns it into a more executable form (L<syntax trees|/syntax tree>) within the I<perl> process itself, which the Perl L</run time> system then interprets. -=item invocand +=item invocant The agent on whose behalf a L</method> is invoked. In a L</class> -method, the invocand is a package name. In an L</instance> method, -the invocand is an object reference. +method, the invocant is a package name. In an L</instance> method, +the invocant is an object reference. =item invocation |