Tweak comment
Dave Rolsky [Wed, 13 Apr 2011 15:13:28 +0000 (10:13 -0500)]
lib/MooseX/StrictConstructor/Trait/Class.pm

index 07f203a..776953b 100644 (file)
@@ -29,16 +29,15 @@ around '_inline_BUILDALL' => sub {
     );
 };
 
-# if the Object role is applied first, and then a superclass added, we just
-# lost our BUILDALL modification.
-after superclasses => sub
-{
+# If the base class role is applied first, and then a superclass is added, we
+# lose the role.
+after superclasses => sub {
     my $self = shift;
     return if not @_;
     Moose::Util::MetaRole::apply_base_class_roles(
-        for => $self->name,
+        for   => $self->name,
         roles => ['MooseX::StrictConstructor::Role::Object'],
-    )
+    );
 };
 
 1;