Skip to content

Commit

Permalink
TonyC's doc and carp patch
Browse files Browse the repository at this point in the history
  • Loading branch information
rcaputo committed Sep 10, 2001
1 parent a47575e commit 9f58d94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/POE/Wheel/ReadWrite.pm
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ sub new {
if (defined $params{Filter}) {
carp "Ignoring InputFilter parameter (Filter parameter takes precedence)"
if (defined $params{InputFilter});
carp "Ignoring OUtputFilter parameter (Filter parameter takes precedence)"
carp "Ignoring OutputFilter parameter (Filter parameter takes precedence)"
if (defined $params{OutputFilter});
$in_filter = $out_filter = delete $params{Filter};
}
Expand Down Expand Up @@ -650,7 +650,7 @@ POE::Wheel::ReadWrite - buffered non-blocking I/O
# To read and write using different line disciplines, such as
# stream out and line in:
InputFilter => POE::Filter::Something->new(), # Read data one way
OUtputFilter => POE::Filter::SomethingElse->new(), # Write data another
OutputFilter => POE::Filter::SomethingElse->new(), # Write data another
InputEvent => $input_event_name, # Input received event
FlushedEvent => $flush_event_name, # Output flushed event
Expand Down

0 comments on commit 9f58d94

Please sign in to comment.