diff options
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r-- | pod/perlop.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod index cd36ec1b6e..94c930f333 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -1666,7 +1666,7 @@ alphanumeric char, as in: In the RE above, which is intentionally obfuscated for illustration, the delimiter is C<m>, the modifier is C<mx>, and after backslash-removal the -RE is the same as for C<m/ ^ a s* b /mx>). There's more than one +RE is the same as for C<m/ ^ a \s* b /mx>. There's more than one reason you're encouraged to restrict your delimiters to non-alphanumeric, non-whitespace choices. |