No need for arrayref with single argument to also
[gitmo/Moose.git] / lib / Moose / Role.pm
index aae14a9..4d2bd67 100644 (file)
@@ -106,7 +106,7 @@ sub augment {
     croak "Moose::Role cannot support 'augment'";
 }
 
-my $exporter = Moose::Exporter->build_import_methods(
+my $exporter = Moose::Exporter->setup_import_methods(
     with_caller => [
         qw( with requires excludes has before after around override make_immutable )
     ],
@@ -227,7 +227,7 @@ The C<init_meta> method sets up the metaclass object for the role
 specified by C<for_class>. It also injects a a C<meta> accessor into
 the role so you can get at this object.
 
-The default metaclass is L<Moose::Mtea::Role>. You can specify an
+The default metaclass is L<Moose::Meta::Role>. You can specify an
 alternate metaclass with the C<metaclass> parameter.
 
 =head1 CAVEATS