Package: libtext-template-perl / 1.46-1

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
Description: fix a spelling mistake
Origin: https://rt.cpan.org/Public/Bug/Display.html?id=86872

--- a/lib/Text/Template.pm
+++ b/lib/Text/Template.pm
@@ -5,7 +5,7 @@
 #
 # Copyright 2013 M. J. Dominus.
 # You may copy and distribute this program under the
-# same terms as Perl iteself.  
+# same terms as Perl itself.
 # If in doubt, write to mjd-perl-template+@plover.com for a license.
 #
 # Version 1.46
@@ -677,7 +677,7 @@
 
 Each program fragment should be a sequence of Perl statements, which
 are evaluated the usual way.  The result of the last statement
-executed will be evaluted in scalar context; the result of this
+executed will be evaluated in scalar context; the result of this
 statement is a string, which is interpolated into the template in
 place of the program fragment itself.
 
@@ -1493,7 +1493,7 @@
 
 Because we didn't put C<use strict> at the top of the second fragment,
 it was only active in the first fragment, and we didn't get any
-C<strict> checking in the second fragment.  Then we mispelled C<$foo>
+C<strict> checking in the second fragment.  Then we misspelled C<$foo>
 and the error wasn't caught.  
 
 C<Text::Template> version 1.22 and higher has a new feature to make