Minor doc fix and a formatting tweak
Dave Rolsky [Thu, 14 Aug 2008 00:35:09 +0000 (00:35 +0000)]
lib/Moose/Exporter.pm

index 53165c1..f0603bd 100644 (file)
@@ -16,7 +16,7 @@ sub setup_import_methods {
 
     my $exporting_package = $args{exporting_package} ||= caller();
 
-    my ( $import, $unimport) = $class->build_import_methods( %args );
+    my ( $import, $unimport ) = $class->build_import_methods(%args);
 
     no strict 'refs';
     *{ $exporting_package . '::import' }   = $import;
@@ -368,7 +368,7 @@ C<MooseX> module, as long as they all use C<Moose::Exporter>.
 
 =head1 METHODS
 
-This module provides exactly one public method:
+This module provides two public methods:
 
 =head2 Moose::Exporter->setup_import_methods(...)