summaryrefslogtreecommitdiff
path: root/pod/perluniintro.pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-09-06 09:01:57 +0300
committerAbhijit Menon-Sen <ams@wiw.org>2002-09-06 03:31:32 +0000
commit63de3cb284beb0325229608ff63562933eba8f50 (patch)
tree1e4b9176d04cfd4cb024e1df6bc3fd9a3bea8047 /pod/perluniintro.pod
parent83d057904fcf43ccbeee0b8e23d13ba528a6cb6a (diff)
downloadperl-63de3cb284beb0325229608ff63562933eba8f50.tar.gz
(mostly (Unicode)) pod nits
Message-Id: <20020906030157.GA28252@lyta.hut.fi> p4raw-id: //depot/perl@17850
Diffstat (limited to 'pod/perluniintro.pod')
-rw-r--r--pod/perluniintro.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perluniintro.pod b/pod/perluniintro.pod
index 870926ea1f..223dbae7fd 100644
--- a/pod/perluniintro.pod
+++ b/pod/perluniintro.pod
@@ -862,7 +862,7 @@ If you have the GNU recode installed, you can also use the
Perl front-end C<Convert::Recode> for character conversions.
The following are fast conversions from ISO 8859-1 (Latin-1) bytes
-to UTF-8 bytes, the code works even with older Perl 5 versions.
+to UTF-8 bytes and back, the code works even with older Perl 5 versions.
# ISO 8859-1 to UTF-8
s/([\x80-\xFF])/chr(0xC0|ord($1)>>6).chr(0x80|ord($1)&0x3F)/eg;