1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
Description: Fix POD spellings
Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=102635
Author: Christopher Hoskin <christopher.hoskin@gmail.com>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2016-04-29
--- a/lib/Thread/Conveyor.pm
+++ b/lib/Thread/Conveyor.pm
@@ -256,7 +256,7 @@
$optimize = Thread::Conveyor->optimize;
The "optimize" class method allows you to specify the default optimization
-type that will be used if no "optimize" field has been explicitely specified
+type that will be used if no "optimize" field has been explicitly specified
with a call to L<new>. It returns the current default type of optimization.
Currently two types of optimization can be selected:
@@ -266,7 +266,7 @@
=item memory
Attempt to use as little memory as possible. Currently, this is achieved by
-starting a seperate thread which hosts an unshared array. This uses the
+starting a separate thread which hosts an unshared array. This uses the
"Thread::Conveyor::Thread" sub-class.
=item cpu
@@ -336,7 +336,7 @@
@lookahead = $belt->peek( $index );
-The "peek" method waits for a box to become availabe at the end of the
+The "peek" method waits for a box to become available at the end of the
belt, but does B<not> remove it from the belt like the L<take> method does.
It does however thaw the contents and returns the resulting values and
references.
@@ -419,14 +419,14 @@
$thread = $belt->thread;
The "thread" method returns the thread object that is being used for the belt.
-It returns undef if no seperate thread is being used.
+It returns undef if no separate thread is being used.
=head2 tid
$tid = $belt->tid;
The "tid" method returns the thread id of the thread object that is being
-used for the belt. It returns undef if no seperate thread is being used.
+used for the belt. It returns undef if no separate thread is being used.
=head1 REQUIRED MODULES
|