summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-05-29 02:50:47 -0500
committerJesse Luehrs <doy@tozt.net>2013-05-29 02:50:47 -0500
commit05721fa3a3e65f359f8c227e1786b963b5849e8a (patch)
tree1f57cb40eb09ab56d0c5f9aef2214c6d68504572
parent5b9c3c3f7bab2a1b02faf8fcf0f4e804f621891a (diff)
downloadreply-05721fa3a3e65f359f8c227e1786b963b5849e8a.tar.gz
reply-05721fa3a3e65f359f8c227e1786b963b5849e8a.zip
mangle instead of munge
-rw-r--r--lib/App/REPL.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/App/REPL.pm b/lib/App/REPL.pm
index 916e60c..5aa54fb 100644
--- a/lib/App/REPL.pm
+++ b/lib/App/REPL.pm
@@ -61,7 +61,7 @@ sub _read {
$self->_wrapped_plugin('display_prompt');
my ($line) = $self->_wrapped_plugin('read_line');
- ($line) = $self->_chained_plugin('munge_line', $line);
+ ($line) = $self->_chained_plugin('mangle_line', $line);
return $line;
}
@@ -77,7 +77,7 @@ sub _print_error {
my $self = shift;
my ($error) = @_;
- ($error) = $self->_chained_plugin('munge_error', $error);
+ ($error) = $self->_chained_plugin('mangle_error', $error);
$self->_wrapped_plugin('print_error', $error);
}
@@ -85,7 +85,7 @@ sub _print_result {
my $self = shift;
my (@result) = @_;
- @result = $self->_chained_plugin('munge_result', @result);
+ @result = $self->_chained_plugin('mangle_result', @result);
$self->_wrapped_plugin('print_result', @result);
}