From 21d5dc9005878930cc556fadc0ee47c4010a9f8a Mon Sep 17 00:00:00 2001 From: Matthias Bethke Date: Wed, 11 Dec 2024 19:09:40 +0300 Subject: [PATCH] Fixed a typo That method alias didn't work --- lib/Mojo/IOLoop/ReadWriteProcess.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/Mojo/IOLoop/ReadWriteProcess.pm b/lib/Mojo/IOLoop/ReadWriteProcess.pm index 41801f1..e67b8e0 100644 --- a/lib/Mojo/IOLoop/ReadWriteProcess.pm +++ b/lib/Mojo/IOLoop/ReadWriteProcess.pm @@ -627,11 +627,11 @@ sub _shutdown { *channel_read_all = \&read_all_channel; # Aliases - IO::Handle -*stdin_handle = \&write_stream; -*stdout_handle = \&read_stream; -*stderr_handle = \&error_stream; -*channe_write_handle = \&channel_in; -*channel_read_handle = \&channel_out; +*stdin_handle = \&write_stream; +*stdout_handle = \&read_stream; +*stderr_handle = \&error_stream; +*channel_write_handle = \&channel_in; +*channel_read_handle = \&channel_out; 1;