summaryrefslogtreecommitdiff
path: root/pod/perldiag.pod
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-12-16 14:22:19 -0800
committerFather Chrysostomos <sprout@cpan.org>2011-12-16 14:22:19 -0800
commit20561843d04b5f9d8a0c885ee1372adc0a188545 (patch)
treefcd6e13869e785387f80365d186c9e1c320f2141 /pod/perldiag.pod
parentf4ad53f4acd96f9d7ec4dd21ac614437cd508665 (diff)
downloadperl-20561843d04b5f9d8a0c885ee1372adc0a188545.tar.gz
perldiag: missing C<>
I know there are dozens and dozens of these that I have not fixed, but I happened to notice these two first and wanted to remove them from my notes.
Diffstat (limited to 'pod/perldiag.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 d322aea4a3..1b97ff701d 100644
--- a/pod/perldiag.pod
+++ b/pod/perldiag.pod
@@ -1172,7 +1172,7 @@ references are disallowed. See L<perlref>.
=item Can't use %! because Errno.pm is not available
-(F) The first time the %! hash is used, perl automatically loads the
+(F) The first time the C<%!> hash is used, perl automatically loads the
Errno.pm module. The Errno module is expected to tie the %! hash to
provide symbolic names for C<$!> errno values.
@@ -2081,7 +2081,7 @@ of Perl are likely to eliminate these arbitrary limitations.
=item Ignoring zero length \N{} in character class
-(W) Named Unicode character escapes (\N{...}) may return a zero-length
+(W) Named Unicode character escapes C<(\N{...})> may return a zero-length
sequence. When such an escape is used in a character class its
behaviour is not well defined. Check that the correct escape has
been used, and the correct charname handler is in scope.