Checking in changes prior to tagging of version 0.72.
[gitmo/Mouse.git] / lib / Mouse / PurePerl.pm
index fefcbcc..2a4ba00 100644 (file)
@@ -317,12 +317,13 @@ sub clone_object {
 
     my $cloned = bless { %$object }, ref $object;
     $class->_initialize_object($cloned, $args, 1);
-
     return $cloned;
 }
 
 sub _initialize_object{
     my($self, $object, $args, $is_cloning) = @_;
+    # The initializer, which is used everywhere, must be clear
+    # when an attribute is added. See Mouse::Meta::Class::add_attribute.
     my $initializer = $self->{_initialize_object} ||= do {
         Mouse::Util::load_class($self->constructor_class)
             ->_generate_initialize_object($self);
@@ -738,7 +739,7 @@ Mouse::PurePerl - A Mouse guts in pure Perl
 
 =head1 VERSION
 
-This document describes Mouse version 0.71
+This document describes Mouse version 0.72
 
 =head1 SEE ALSO