Package: libpostscript-file-perl / 2.23+dfsg-3

pod-spelling.patch Patch series | 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
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
Description: Another batch of spelling mistakes in POD
Author: Damyan Ivanov <dmn@debian.org>
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=123984
Bug: https://rt.cpan.org/Ticket/Display.html?id=123984

--- a/lib/PostScript/File.pm
+++ b/lib/PostScript/File.pm
@@ -2344,7 +2344,7 @@ current page label as its only argument
 
 This module provides the L</incpage_label> (which uses Perl's
 autoincrement operator) and L</incpage_roman> (which handles lowercase
-Roman numberals from i to xxxix, 1-39) functions for use as
+Roman numerals from i to xxxix, 1-39) functions for use as
 C<incpage_handler>.  (Default: C<\&incpage_label>)
 
 
@@ -2404,7 +2404,7 @@ C<space>.
 The document's title for use in the C<%%Title> DSC comment.  The
 default (C<undef>) means to use the document's filename as the title.
 If no filename is available when the document is output, the
-C<%%Title> comment wil be omitted.
+C<%%Title> comment will be omitted.
 
 
 =head3 version
@@ -3726,7 +3726,7 @@ example, at the point '2 index' fetches
     222 111
     [ (top=) 2 index (next=) 5 index ] db_print
 
-willl output this.
+will output this.
 
     top= 111 next= 222
 
--- a/lib/PostScript/File/Functions.pm
+++ b/lib/PostScript/File/Functions.pm
@@ -299,7 +299,7 @@ The constructor takes no parameters.
   $funcs->add('functionRequested', ...);
 
 Add one or more functions to the procset to be generated.  All
-dependencies of the requsted functions are added automatically.  See
+dependencies of the requested functions are added automatically.  See
 L</"POSTSCRIPT FUNCTIONS"> for the list of available functions.
 
 
@@ -319,10 +319,10 @@ See L<PostScript::File/add_procset>.
 
   ($name, $code, $version) = $funcs->generate_procset($basename);
 
-This collects the requsted functions into a block of PostScript code.
+This collects the requested functions into a block of PostScript code.
 
 C<$name> is a suitable name for the procset, created by appending the
-ids of the requsted functions to C<$basename>.  If C<$basename> is
+ids of the requested functions to C<$basename>.  If C<$basename> is
 omitted, it defaults to the class name with C<::> replaced by C<_>.
 
 C<$code> is a block of PostScript code that defines the functions.  It
@@ -338,7 +338,7 @@ In scalar context, returns C<$code>.
 
 =item C<< %s is not an available function >>
 
-You requsted a function that this version of
+You requested a function that this version of
 PostScript::File::Functions doesn't provide.