From: Dave Rolsky Date: Thu, 14 Aug 2008 00:35:09 +0000 (+0000) Subject: Minor doc fix and a formatting tweak X-Git-Tag: 0_55_01~25 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=75f999158466d5185da92fd59d9356036586d95a;p=gitmo%2FMoose.git Minor doc fix and a formatting tweak --- diff --git a/lib/Moose/Exporter.pm b/lib/Moose/Exporter.pm index 53165c1..f0603bd 100644 --- a/lib/Moose/Exporter.pm +++ b/lib/Moose/Exporter.pm @@ -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 module, as long as they all use C. =head1 METHODS -This module provides exactly one public method: +This module provides two public methods: =head2 Moose::Exporter->setup_import_methods(...)