whole bunch of stuff
[gitmo/Class-MOP.git] / examples / AttributesWithHistory.pod
index fe712c8..95c4688 100644 (file)
@@ -95,7 +95,7 @@ AttributesWithHistory - An example attribute metaclass which keeps a history of
   
   sub new  {
       my $class = shift;
-      bless $class->meta->construct_instance(@_) => $class;
+      $class->meta->new_object(@_);
   }
   
 =head1 DESCRIPTION