whitespace fixes
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Overview.pod
index cb36a93..2ded3f9 100644 (file)
@@ -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
       }