Some missing hyphens in perlfaq*
authorFather Chrysostomos <sprout@cpan.org>
Fri, 18 Feb 2011 02:28:42 +0000 (18:28 -0800)
committerFather Chrysostomos <sprout@cpan.org>
Fri, 18 Feb 2011 02:28:58 +0000 (18:28 -0800)
pod/perlfaq.pod
pod/perlfaq4.pod
pod/perlfaq6.pod

index 5e73ca5..09b40cf 100644 (file)
@@ -512,7 +512,7 @@ How do I capitalize all the words on one line?
 
 =item *
 
-How can I split a [character] delimited string except when inside [character]?
+How can I split a [character]-delimited string except when inside [character]?
 
 =item *
 
@@ -934,7 +934,7 @@ What is C</o> really for?
 
 =item *
 
-How do I use a regular expression to strip C style comments from a file?
+How do I use a regular expression to strip C-style comments from a file?
 
 =item *
 
index 1cbea50..71ab290 100644 (file)
@@ -900,7 +900,7 @@ that C<s> after the apostrophe? You could try a regular expression:
 Now, what if you don't want to capitalize that "and"? Just use
 L<Text::Autoformat> and get on with the next problem. :)
 
-=head2 How can I split a [character] delimited string except when inside [character]?
+=head2 How can I split a [character]-delimited string except when inside [character]?
 
 Several modules can handle this sort of parsing--C<Text::Balanced>,
 C<Text::CSV>, C<Text::CSV_XS>, and C<Text::ParseWords>, among others.
index a705988..1a37978 100644 (file)
@@ -436,7 +436,7 @@ later, you should only see C<re> report that for the first iteration.
                print STDERR "\t$_ is good!\n" if m/$regex/;
                }
 
-=head2 How do I use a regular expression to strip C style comments from a file?
+=head2 How do I use a regular expression to strip C-style comments from a file?
 
 While this actually can be done, it's much harder than you'd think.
 For example, this one-liner