File: 0001_fix-typos-in-manpage.patch

package info (click to toggle)
libarray-compare-perl 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 140 kB
  • ctags: 14
  • sloc: perl: 105; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 1,070 bytes parent folder | download
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
Description: Fix typos in POD
Author: Lucas Kanashiro <kanashiro@debian.org>
Last-Updated: 2016-07-21
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=116376
Bug: https://rt.cpan.org/Ticket/Display.html?id=116376

--- a/lib/Array/Compare.pm
+++ b/lib/Array/Compare.pm
@@ -62,7 +62,7 @@ character, either by passing and alterna
 
   my $comp = Array::Compare->new(Sep => '|');
 
-or by changing the seperator for an existing comparator object
+or by changing the separator for an existing comparator object
 
   $comp->Sep('|');
 
@@ -99,7 +99,7 @@ a full comparison which returns a list c
 which differ between the two arrays. If the arrays are the same it returns
 an empty list. In scalar context the full comparison returns the length of
 this list (i.e. the number of elements that differ). You can access the full
-comparision in two ways. Firstly, there is a C<DefFull> attribute. If this
+comparison in two ways. Firstly, there is a C<DefFull> attribute. If this
 is C<true> then a full comparison if carried out whenever the C<compare>
 method is called.