summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉtienne Mollier <emollier@debian.org>2023-06-21 22:24:52 +0200
committerÉtienne Mollier <emollier@debian.org>2023-06-21 22:24:52 +0200
commitbb5c96d841442e972a876e7ff2f9569000925794 (patch)
tree86294d166344929642a74fe5af5dd3053c7c2d8e
parentaf2307eb40509eee6164944633a3fa22054acb21 (diff)
typos.patch: add; fix typos caught by lintian.
-rw-r--r--debian/patches/series1
-rw-r--r--debian/patches/typos.patch70
2 files changed, 71 insertions, 0 deletions
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..002796a
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+typos.patch
diff --git a/debian/patches/typos.patch b/debian/patches/typos.patch
new file mode 100644
index 0000000..c709a32
--- /dev/null
+++ b/debian/patches/typos.patch
@@ -0,0 +1,70 @@
+Description: fix typos caught by lintian.
+Author: Étienne Mollier <emollier@debian.org>
+Forwarded: https://github.com/marioroy/mce-perl/pull/17
+Last-Update: 2023-06-21
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- libmce-perl.orig/lib/MCE/Channel/Mutex.pm
++++ libmce-perl/lib/MCE/Channel/Mutex.pm
+@@ -323,7 +323,7 @@
+ 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 );
+--- libmce-perl.orig/lib/MCE/Channel/MutexFast.pm
++++ libmce-perl/lib/MCE/Channel/MutexFast.pm
+@@ -335,7 +335,7 @@
+ 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 );
+--- libmce-perl.orig/lib/MCE/Channel/Threads.pm
++++ libmce-perl/lib/MCE/Channel/Threads.pm
+@@ -339,7 +339,7 @@
+ 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 );
+--- libmce-perl.orig/lib/MCE/Channel/ThreadsFast.pm
++++ libmce-perl/lib/MCE/Channel/ThreadsFast.pm
+@@ -353,7 +353,7 @@
+ 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 );
+--- libmce-perl.orig/lib/MCE/Core/Input/Iterator.pm
++++ libmce-perl/lib/MCE/Core/Input/Iterator.pm
+@@ -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.
+@@ -133,7 +133,7 @@
+
+ =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.