diff options
author | Bob Wilkinson <perlbug@perl.org> | 2002-10-09 09:50:40 +0000 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2002-10-11 05:24:20 +0000 |
commit | c801bddb79887dcdaa40b9af734318a8be202252 (patch) | |
tree | 6217472326cffabeaf7dac8045bc1ae79f9dbd53 /pod/perltooc.pod | |
parent | ab01544ff4579f0986e6be613b46a4801bc31f58 (diff) | |
download | perl-c801bddb79887dcdaa40b9af734318a8be202252.tar.gz |
[perl #17819] Typo in perltooc?
From: Bob Wilkinson (via RT) <perlbug@perl.org>
Date: 9 Oct 2002 09:50:40 -0000
Message-Id: <rt-17819-39445.14.7484532089852@bugs6.perl.org>
Subject: [perl #17821] Typo in perltooc
From: Bob Wilkinson (via RT) <perlbug@perl.org>
Date: 9 Oct 2002 10:12:51 -0000
Message-Id: <rt-17821-39458.9.41452851965508@bugs6.perl.org>
p4raw-id: //depot/perl@17995
Diffstat (limited to 'pod/perltooc.pod')
-rw-r--r-- | pod/perltooc.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perltooc.pod b/pod/perltooc.pod index fdddb02531..667f9fc202 100644 --- a/pod/perltooc.pod +++ b/pod/perltooc.pod @@ -624,7 +624,7 @@ The astonishing thing about the Cosmos class above is that the value returned by the &bigbang "constructor" is not a reference to a blessed object at all. It's just the class's own name. A class name is, for virtually all intents and purposes, a perfectly acceptable object. -It has state, behavior, and identify, the three crucial components +It has state, behavior, and identity, the three crucial components of an object system. It even manifests inheritance, polymorphism, and encapsulation. And what more can you ask of an object? @@ -692,7 +692,7 @@ that happens to be named &spawn. print $obj3->color(); # prints "vermilion" Each of these objects' colors is now "vermilion", because that's the -meta-object's value that attribute, and these objects do not have +meta-object's value for that attribute, and these objects do not have individual color values set. Changing the attribute on one object has no effect on other objects |