File: pod.patch

package info (click to toggle)
libhtml-template-expr-perl 0.07-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 248 kB
  • sloc: perl: 285; makefile: 2
file content (83 lines) | stat: -rw-r--r-- 2,099 bytes parent folder | download | duplicates (2)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
Description: fix POD errors
Origin: vendor
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=125728
Author: gregor herrmann <gregoa@debian.org>
Last-Update: 2018-07-01

--- a/Expr.pm
+++ b/Expr.pm
@@ -433,7 +433,7 @@
 Some of you may wonder if I've been replaced by a pod person.  Just
 for the record, I still think this sort of thing should be avoided.
 However, I realize that there are some situations where allowing the
-template author some programatic leeway can be invaluable.
+template author some programmatic leeway can be invaluable.
 
 If you don't like it, don't use this module.  Keep using plain ol'
 HTML::Template - I know I will!  However, if you find yourself needing
@@ -493,7 +493,7 @@
 
 =item * E<lt>=E<gt>
 
-=back 4
+=back
 
 =item * String Comparisons
 
@@ -513,9 +513,9 @@
 
 =item * cmp
 
-=back 4
+=back
 
-=back 4
+=back
 
 =head1 MATHEMATICS
 
@@ -533,7 +533,7 @@
 
 =item * %
 
-=back 4
+=back
 
 There are also some mathy functions.  See the FUNCTIONS section below.
 
@@ -547,7 +547,7 @@
 
 =item * || (synonym: or)
 
-=back 4
+=back
 
 =head1 FUNCTIONS
 
@@ -596,7 +596,7 @@
 
 =item * srand
 
-=back 4
+=back
 
 All functions must be called using full parenthesis.  For example,
 this is a syntax error:
@@ -621,7 +621,7 @@
   HTML::Template::Expr->register_function(func_name => \&func_handler);
 
 You provide a subroutine reference that will be called during output.
-It will recieve as arguments the parameters specified in the template.
+It will receive as arguments the parameters specified in the template.
 For example, here's a function that checks if a directory exists:
 
   sub directory_exists {
@@ -662,7 +662,7 @@
 
 Currently the module forces the HTML::Template global_vars option to
 be set.  This will hopefully go away in a future version, so if you
-need global_vars in your templates then you should set it explicitely.
+need global_vars in your templates then you should set it explicitly.
 
 The module won't work with HTML::Template's file_cache or shared_cache
 modes, but normal memory caching should work.  I hope to address this