diff options
author | Karl Williamson <public@khwilliamson.com> | 2010-12-01 16:34:25 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-12-01 18:24:03 -0800 |
commit | 315f11aa5a6d12fadc6dc03ca3bc26c69af24cb0 (patch) | |
tree | 951b4d715436e28a61b5223ea247bd60afeff848 /pod | |
parent | 20db750130061015fab1ffed94ff374c2bd38af3 (diff) | |
download | perl-315f11aa5a6d12fadc6dc03ca3bc26c69af24cb0.tar.gz |
Nit in perlre.pod
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlre.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod index f415a16ffd..b74618f575 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -686,7 +686,7 @@ Note that the C<d>, C<l>, C<p>, and C<u> modifiers are special in that they can only be enabled, not disabled, and the C<d>, C<l>, and C<u> modifiers are mutually exclusive: specifying one de-specifies the others, and a maximum of one may appear in the construct. Thus, for -example, C<(?-p)>, C<(?-d:...)>, and C<(?-dl:...)> will warn when +example, C<(?-p)>, C<(?-d:...)>, and C<(?dl:...)> will warn when compiled under C<use warnings>. Note also that the C<p> modifier is special in that its presence |