Alter with_meta description in Extending::Recipe4
Brad Bowman [Wed, 28 Sep 2011 01:27:43 +0000 (11:27 +1000)]
The package name being the first argument seems
misleading based on the description of with_meta
in the Moose::Exporter documentation.

lib/Moose/Cookbook/Extending/Recipe4.pod

index d7af9a1..2ae476c 100644 (file)
@@ -49,8 +49,8 @@ replaced with C<no MyApp::Mooseish>.
 
 The C<with_meta> parameter specifies a list of functions that should
 be wrapped before exporting. The wrapper simply ensures that the
-importing package name is the first argument to the function, so we
-can do C<S<my $caller = shift;>>.
+importing package's appropriate metaclass object is the first argument
+to the function, so we can do C<S<my $meta = shift;>>.
 
 See the L<Moose::Exporter> docs for more details on its API.