summaryrefslogtreecommitdiff
path: root/lib/utf8.pm
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-01-13 14:50:32 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-01-13 14:50:32 +0000
commit0f414b9566e174d41eb2dcd375172be5f19a5e0d (patch)
tree981d2bb04120bd3488ef78212ee67ff7ffe186fc /lib/utf8.pm
parent4ca17203d327911e3fdfb4503f50cd186a82208a (diff)
downloadperl-0f414b9566e174d41eb2dcd375172be5f19a5e0d.tar.gz
Fix internal links in POD.
p4raw-id: //depot/perl@26819
Diffstat (limited to 'lib/utf8.pm')
-rw-r--r--lib/utf8.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/utf8.pm b/lib/utf8.pm
index b7c938e17e..7de9f63e16 100644
--- a/lib/utf8.pm
+++ b/lib/utf8.pm
@@ -61,7 +61,7 @@ useful for their own purposes, but they are not really part of the
"pragmatic" effect.
Until UTF-8 becomes the default format for source text, either this
-pragma or the L</encoding> pragma should be used to recognize UTF-8
+pragma or the L<encoding> pragma should be used to recognize UTF-8
in the source. When UTF-8 becomes the standard source format, this
pragma will effectively become a no-op. For convenience in what
follows the term I<UTF-X> is used to refer to UTF-8 on ASCII and ISO
@@ -93,7 +93,7 @@ UTF-8. If you want to have such bytes and use utf8, you can disable
utf8 until the end the block (or file, if at top level) by C<no utf8;>.
If you want to automatically upgrade your 8-bit legacy bytes to UTF-8,
-use the L</encoding> pragma instead of this pragma. For example, if
+use the L<encoding> pragma instead of this pragma. For example, if
you want to implicitly upgrade your ISO 8859-1 (Latin-1) bytes to UTF-8
as used in e.g. C<chr()> and C<\x{...}>, try this: