summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
Diffstat (limited to 'pod')
-rw-r--r--pod/perldiag.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod
index 0f29f3e99b..05a21a138b 100644
--- a/pod/perldiag.pod
+++ b/pod/perldiag.pod
@@ -540,7 +540,7 @@ Check your control flow and number of arguments.
=item "\B{" is deprecated; use "\B\{" or "\B[{]" instead in regex; marked by <-- HERE in m/%s/
-(W deprecated) Use of an unescaped "{" immediately following
+(D deprecated) Use of an unescaped "{" immediately following
a C<\b> or C<\B> is now deprecated so as to reserve its use for Perl
itself in a future release. You can either precede the brace
with a backslash, or enclose it in square brackets; the latter
@@ -1310,7 +1310,7 @@ Perhaps you need to copy the value to a temporary, and repeat that.
=item Character following "\c" must be ASCII
-(F)(W deprecated, syntax) In C<\cI<X>>, I<X> must be an ASCII character.
+(F)(D deprecated, syntax) In C<\cI<X>>, I<X> must be an ASCII character.
It is planned to make this fatal in all instances in Perl v5.20. In
the cases where it isn't fatal, the character this evaluates to is
derived by exclusive or'ing the code point of this character with 0x40.