X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=blobdiff_plain;f=lib%2FDevel%2FREPL%2FOverview.pod;h=2ded3f964fe88392ba8459beb222a062440a7a8c;hp=cb36a93a01544dc67ef7370af2bd40660b21971b;hb=afc8677b078de3f125147caf731bd298c8b6d04e;hpb=a2a19b0aa298b778c59d7d30e56d509725a7da85 diff --git a/lib/Devel/REPL/Overview.pod b/lib/Devel/REPL/Overview.pod index cb36a93..2ded3f9 100644 --- a/lib/Devel/REPL/Overview.pod +++ b/lib/Devel/REPL/Overview.pod @@ -234,7 +234,7 @@ take a look at it: use Moose; ### advanced OOP system for Perl ### keep those exports/imports out of our namespace - use namespace::clean -except => [ 'meta' ]; + use namespace::autoclean; with 'Devel::REPL::Profile'; ## seem perldoc Muse @@ -246,7 +246,7 @@ take a look at it: ### it is called on profile activation sub apply_profile { my ($self, $repl) = @_; - ### $self - no comments, $repl - current instance of Devel::REPL + ### $self - no comments, $repl - current instance of Devel::REPL $repl->load_plugin($_) for $self->plugins; ### load our plugins }