cvsuser 04/02/26 12:07:44
Modified: docs/pdds pdd15_objects.pod
Log:
Fix up the docs
Revision Changes Path
1.31 +2 -2 parrot/docs/pdds/pdd15_objects.pod
Index: pdd15_objects.pod
===================================================================
RCS file: /cvs/public/parrot/docs/pdds/pdd15_objects.pod,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -w -r1.30 -r1.31
--- pdd15_objects.pod 26 Feb 2004 18:02:10 -0000 1.30
+++ pdd15_objects.pod 26 Feb 2004 20:07:44 -0000 1.31
@@ -476,8 +476,8 @@
To create a class C<Foo> with the parents C<A> and C<B>, the code
would be:
- findclass $P0, "A"
- findclass $P1, "B"
+ getclass $P0, "A"
+ getclass $P1, "B"
subclass $P2, $P0, "Foo"
addparent $P2, $P1