Reflow ‘Having no space’ in perldiag
authorFather Chrysostomos <sprout@cpan.org>
Fri, 18 Feb 2011 15:28:46 +0000 (07:28 -0800)
committerFather Chrysostomos <sprout@cpan.org>
Fri, 18 Feb 2011 15:28:46 +0000 (07:28 -0800)
pod/perldiag.pod

index 1102b55..e1660fc 100644 (file)
@@ -1995,12 +1995,12 @@ Further error messages would likely be uninformative.
 
 (D syntax)
 
-You had a word that isn't a regex modifier immediately following a pattern
-without an intervening space or you used one of the regex modifiers
-("a", "d", "l", and "u") that in 5.14 are disallowed as suffixes.
-In that case, use the infix form, like C</(?a:...)/>.  In the other case,
-add white space between the pattern and following word.  As an example of the
-latter, the two constructs:
+You had a word that isn't a regex modifier immediately following a
+pattern without an intervening space or you used one of the regex
+modifiers ("a", "d", "l", and "u") that in 5.14 are disallowed as
+suffixes. In that case, use the infix form, like C</(?a:...)/>.  In the
+other case, add white space between the pattern and following word.
+As an example of the latter, the two constructs:
 
  $a =~ m/$foo/sand $bar
  $a =~ m/$foo/s and $bar