Doh, reversed the conditional and broke old Moose
[gitmo/MooseX-StrictConstructor.git] / lib / MooseX / StrictConstructor.pm
index aa81a45..f14e4c4 100644 (file)
@@ -16,7 +16,7 @@ my %metaroles = (
 
 $metaroles{constructor}
     = ['MooseX::StrictConstructor::Trait::Method::Constructor']
-    if $Moose::VERSION >= 1.9900;
+    if $Moose::VERSION <= 1.9900;
 
 Moose::Exporter->setup_import_methods( class_metaroles => \%metaroles );
 
@@ -45,9 +45,9 @@ __END__
 =head1 DESCRIPTION
 
 Simply loading this module makes your constructors "strict". If your
-constructor is called with an attribute init argument that your class
-does not declare, then it calls C<Moose->throw_error()>. This is a great way
-to catch small typos.
+constructor is called with an attribute init argument that your class does not
+declare, then it calls C<< Moose->throw_error() >>. This is a great way to
+catch small typos.
 
 =head2 Subverting Strictness