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
|
Description: fix some spelling errors
Origin: vendor
Author: gregor herrmann <gregoa@debian.org>
Last-Update: 2015-06-05
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=104973
Bug: https://rt.cpan.org/Ticket/Display.html?id=104973
--- a/lib/XML/Easy/Syntax.pm
+++ b/lib/XML/Easy/Syntax.pm
@@ -721,7 +721,7 @@
=item $xml10_chardata_rx
Ordinary literal character data. This consists of zero or more acceptable
-charaters, other than the metacharacters "B<< < >>" and "B<&>", and
+characters, other than the metacharacters "B<< < >>" and "B<&>", and
not including "B<< ]]> >>" as a subsequence. Such data stands for
itself when it appears between the start and end tags of an element,
where it can be interspersed with references, CDATA sections, comments,
@@ -748,7 +748,7 @@
=item $xml10_cdata_rx
Literal character data in a CDATA section. This consists of zero or
-more acceptable charaters, not including "B<< ]]> >>" as a subsequence.
+more acceptable characters, not including "B<< ]]> >>" as a subsequence.
Unlike ordinary literal character data, the characters "B<< < >>" and
"B<&>" are not metacharacters here. Such data stands for itself when
it appears within a CDATA section.
@@ -1063,7 +1063,7 @@
whitespace.
Beware in using a pattern such as C<$xml10_misc_rx*>. It could match
-a string of whitespace charaters in many ways, leading to exponential
+a string of whitespace characters in many ways, leading to exponential
behaviour if it becomes necessary to backtrack. This can be avoided by
using the C<$xml10_miscseq_rx> pattern (below).
|