summaryrefslogtreecommitdiff
path: root/pod/perlobj.pod
diff options
context:
space:
mode:
authorDavid Steinbrunner <dsteinbrunner@pobox.com>2013-05-21 07:28:36 -0400
committerJames E Keenan <jkeenan@cpan.org>2013-05-26 04:06:26 +0200
commitd2534ce927217280f0fa1204ca83ffca9f5ce9ae (patch)
tree5cdf0f6d82c9ff94e94b82142bee8f92f2baec92 /pod/perlobj.pod
parent811152076124f23ce4fce5eaf783077468102f6a (diff)
downloadperl-d2534ce927217280f0fa1204ca83ffca9f5ce9ae.tar.gz
typo fix for obj pod
Diffstat (limited to 'pod/perlobj.pod')
-rw-r--r--pod/perlobj.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlobj.pod b/pod/perlobj.pod
index 34a5332aa1..61e636bb29 100644
--- a/pod/perlobj.pod
+++ b/pod/perlobj.pod
@@ -131,7 +131,7 @@ documented methods on the object.
Note, however, that (unlike most other OO languages) Perl does not
ensure or enforce encapsulation in any way. If you want objects to
actually I<be> opaque you need to arrange for that yourself. This can
-be done in a varierty of ways, including using L<"Inside-Out objects">
+be done in a variety of ways, including using L<"Inside-Out objects">
or modules from CPAN.
=head3 Objects Are Blessed; Variables Are Not
@@ -688,7 +688,7 @@ X<indirect object>
B<Outside of the file handle case, use of this syntax is discouraged as
it can confuse the Perl interpreter. See below for more details.>
-Perl suports another method invocation syntax called "indirect object"
+Perl supports another method invocation syntax called "indirect object"
notation. This syntax is called "indirect" because the method comes
before the object it is being invoked on.