summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-06-21 01:45:02 -0400
committerJesse Luehrs <doy@tozt.net>2013-06-21 01:45:02 -0400
commit39107c0d1b4435037e53a1f7c678b27b2765c3e5 (patch)
tree6a82b9851eed47f66b6bc5d02be260bfc358c849
parent07a53dbe53b6f20a87441f37ef5f1f17e54f4a3c (diff)
downloadreply-39107c0d1b4435037e53a1f7c678b27b2765c3e5.tar.gz
reply-39107c0d1b4435037e53a1f7c678b27b2765c3e5.zip
doc fixes
-rw-r--r--lib/Reply/Plugin/AutoRefresh.pm7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/Reply/Plugin/AutoRefresh.pm b/lib/Reply/Plugin/AutoRefresh.pm
index 6341c9d..260cbf0 100644
--- a/lib/Reply/Plugin/AutoRefresh.pm
+++ b/lib/Reply/Plugin/AutoRefresh.pm
@@ -1,7 +1,7 @@
package Reply::Plugin::AutoRefresh;
use strict;
use warnings;
-# ABSTRACT: provides a more informative prompt
+# ABSTRACT: automatically refreshes the external code you use
use base 'Reply::Plugin';
use Class::Refresh;
@@ -13,9 +13,9 @@ use Class::Refresh;
=head1 DESCRIPTION
-This plugin automatically refreshes all loaded modules after every
+This plugin automatically refreshes all loaded modules before every
statement execution. It's useful if you are working on a module in
-a file and you want the changes to automatically be loaded in reply.
+a file and you want the changes to automatically be loaded in Reply.
=cut
@@ -26,4 +26,5 @@ sub execute {
Class::Refresh->refresh;
$next->(@args);
}
+
1;