From 05721fa3a3e65f359f8c227e1786b963b5849e8a Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 29 May 2013 02:50:47 -0500 Subject: mangle instead of munge --- lib/App/REPL.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/App/REPL.pm') 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); } -- cgit v1.2.3-54-g00ecf