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=3d7b81deaec185a33dc4c0f850186d6f9774596c;hp=2e643bf709daa2034cdf8ebfd44c1fdabaf6891f;hb=0e0d2539048eade7dfa30fff6f1ad5b7e90bbf70;hpb=aa8b764738156914d48d182ee0706e4c3d4e5c99 diff --git a/lib/Devel/REPL/Overview.pod b/lib/Devel/REPL/Overview.pod index 2e643bf..3d7b81d 100644 --- a/lib/Devel/REPL/Overview.pod +++ b/lib/Devel/REPL/Overview.pod @@ -31,7 +31,7 @@ You can even call a console in your script and play around in script's context =back -For Ruby it would be irb, for Python is... python byitself and for perl... +For Ruby it would be irb, for Python is... python by itself and for perl... and there was nothing for perl (except that ugly perl -d -e "" and several failed projects) until Devel::REPL was written by Matt S Trout (a.k.a. mst) from ShadowCatSystems L. @@ -165,7 +165,7 @@ and you don't want to type path, you can: =head2 I want it to bark, fly, jump and swim! or Plugins -Plugins extend functionality and change behavor of Devel::REPL. +Plugins extend functionality and change behavior of Devel::REPL. Bundled plugins are: =over 2 @@ -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 }