Skip to content

Commit

Permalink
Merge pull request #17 from emollier/typos
Browse files Browse the repository at this point in the history
fix typos caught by lintian.
  • Loading branch information
marioroy committed Jun 21, 2023
2 parents b8ac87b + 678e238 commit b640000
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/MCE/Channel/Mutex.pm
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ The API is described in L<MCE::Channel>.
my $chnl_a = MCE::Channel->new( impl => 'Mutex' );
# Specify the 'mp' option for safe use by two or more producers
# sending or recieving on the left side of the channel (i.e.
# sending or receiving on the left side of the channel (i.e.
# ->enqueue/->send or ->recv2/->recv2_nb).
my $chnl_b = MCE::Channel->new( impl => 'Mutex', mp => 1 );
Expand Down
2 changes: 1 addition & 1 deletion lib/MCE/Channel/MutexFast.pm
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ Current module available since MCE 1.877.
my $chnl_a = MCE::Channel->new( impl => 'MutexFast' );
# Specify the 'mp' option for safe use by two or more producers
# sending or recieving on the left side of the channel (i.e.
# sending or receiving on the left side of the channel (i.e.
# ->enqueue/->send or ->recv2/->recv2_nb).
my $chnl_b = MCE::Channel->new( impl => 'MutexFast', mp => 1 );
Expand Down
2 changes: 1 addition & 1 deletion lib/MCE/Channel/Threads.pm
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ The API is described in L<MCE::Channel>.
my $chnl_a = MCE::Channel->new( impl => 'Threads' );
# Specify the 'mp' option for safe use by two or more producers
# sending or recieving on the left side of the channel (i.e.
# sending or receiving on the left side of the channel (i.e.
# ->enqueue/->send or ->recv2/->recv2_nb).
my $chnl_b = MCE::Channel->new( impl => 'Threads', mp => 1 );
Expand Down
2 changes: 1 addition & 1 deletion lib/MCE/Channel/ThreadsFast.pm
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ Current module available since MCE 1.877.
my $chnl_a = MCE::Channel->new( impl => 'ThreadsFast' );
# Specify the 'mp' option for safe use by two or more producers
# sending or recieving on the left side of the channel (i.e.
# sending or receiving on the left side of the channel (i.e.
# ->enqueue/->send or ->recv2/->recv2_nb).
my $chnl_b = MCE::Channel->new( impl => 'ThreadsFast', mp => 1 );
Expand Down
4 changes: 2 additions & 2 deletions lib/MCE/Core/Input/Iterator.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## ----------------------------------------------------------------------------
## Iterator reader.
##
## This package, used interally by the worker process, provides support for
## This package, used internally by the worker process, provides support for
## user specified iterators assigned to input_data.
##
## There is no public API.
Expand Down Expand Up @@ -133,7 +133,7 @@ This document describes MCE::Core::Input::Iterator version 1.887
=head1 DESCRIPTION
This package, used interally by the worker process, provides support for
This package, used internally by the worker process, provides support for
user specified iterators assigned to C<input_data>.
There is no public API.
Expand Down

0 comments on commit b640000

Please sign in to comment.