summaryrefslogtreecommitdiff
path: root/pod/perltooc.pod
diff options
context:
space:
mode:
authorRichard Soderberg <p5-authors@crystalflame.net>2004-11-12 16:14:49 +0000
committerH.Merijn Brand <h.m.brand@xs4all.nl>2004-11-12 20:47:19 +0000
commitfa11829f4b6d56533794dd127f3d1068d9593670 (patch)
tree7f368b0c4f3bed68b378d9fea31eee156223ea2c /pod/perltooc.pod
parentac7de224d1cdf1bc265fb1a3311a78c903d66ee7 (diff)
downloadperl-fa11829f4b6d56533794dd127f3d1068d9593670.tar.gz
[perl #32419] Spelling fixes for perl@23492
From: Richard Soderberg (via RT) <perlbug-followup@perl.org> Message-ID: <rt-3.0.11-32419-100173.13.0717895191322@perl.org> p4raw-id: //depot/perl@23496
Diffstat (limited to 'pod/perltooc.pod')
-rw-r--r--pod/perltooc.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perltooc.pod b/pod/perltooc.pod
index 78b6135717..6737105011 100644
--- a/pod/perltooc.pod
+++ b/pod/perltooc.pod
@@ -922,7 +922,7 @@ all privacy in Perl, and it is a powerful form of privacy indeed.
It is widely perceived, and indeed has often been written, that Perl
provides no data hiding, that it affords the class designer no privacy
-nor isolation, merely a rag-tag assortment of weak and unenforcible
+nor isolation, merely a rag-tag assortment of weak and unenforceable
social conventions instead. This perception is demonstrably false and
easily disproven. In the next section, we show how to implement forms
of privacy that are far stronger than those provided in nearly any
@@ -1106,7 +1106,7 @@ itself access its own class attributes without the mediating intervention of
properly designed accessor methods is probably not a good idea after all.
Restricting access to class attributes from the class itself is usually
-not enforcible even in strongly object-oriented languages. But in Perl,
+not enforceable even in strongly object-oriented languages. But in Perl,
you can.
Here's one way:
@@ -1298,7 +1298,7 @@ You can't use file-scoped lexicals in conjunction with the SelfLoader
or the AutoLoader, because they alter the lexical scope in which the
module's methods wind up getting compiled.
-The usual mealy-mouthed package-mungeing doubtless applies to setting
+The usual mealy-mouthed package-munging doubtless applies to setting
up names of object attributes. For example, C<< $self->{ObData1} >>
should probably be C<< $self->{ __PACKAGE__ . "_ObData1" } >>, but that
would just confuse the examples.