Subject: | doc correction |
Looking at https://metacpan.org/pod/Text::Balanced I noticed some formatting error,
Also I would like to remove a warning about 'qr' that it will only work under "new" perl 5.005 or later, because for some (not explained) reasons the module requires 5.005 anyway, which is specified so at the very top of the module.
Regards,
Vadim
Subject: | text-balanced.patch.txt |
diff --git a/cpan/Text-Balanced/lib/Text/Balanced.pm b/cpan/Text-Balanced/lib/Text/Balanced.pm
index f1a5780..4f0c0d2 100644
--- a/cpan/Text-Balanced/lib/Text/Balanced.pm
+++ b/cpan/Text-Balanced/lib/Text/Balanced.pm
@@ -1095,16 +1095,16 @@ Text::Balanced - Extract delimited text sequences from strings.
'literal',
]);
-# Create a string representing an optimized pattern (a la Friedl)
-# that matches a substring delimited by any of the specified characters
-# (in this case: any type of quote or a slash)
+ # Create a string representing an optimized pattern (a la Friedl)
+ # that matches a substring delimited by any of the specified characters
+ # (in this case: any type of quote or a slash)
$patstring = gen_delimited_pat(q{'"`/});
-# Generate a reference to an anonymous sub that is just like extract_tagged
-# but pre-compiled and optimized for a specific pair of tags, and consequently
-# much faster (i.e. 3 times faster). It uses qr// for better performance on
-# repeated calls, so it only works under Perl 5.005 or later.
+ # Generate a reference to an anonymous sub that is just like extract_tagged
+ # but pre-compiled and optimized for a specific pair of tags, and consequently
+ # much faster (i.e. 3 times faster). It uses qr// for better performance on
+ # repeated calls.
$extract_head = gen_extract_tagged('<HEAD>','</HEAD>');