whole bunch of stuff
[gitmo/Class-MOP.git] / examples / InsideOutClass.pod
index d82cd03..653f917 100644 (file)
@@ -104,8 +104,8 @@ InsideOutClass - A set of example metaclasses which implement the Inside-Out tec
   
   sub new  {
       my $class = shift;
-      bless $class->meta->construct_instance(@_) => $class;
-  }  
+      $class->meta->new_object(@_);
+  } 
 
   # now you can just use the class as normal