Change 20486 by [EMAIL PROTECTED] on 2003/08/05 06:05:53
Subject: [PATCH] typos in encoding.pm
From: "Marcus Holland-Moritz" <[EMAIL PROTECTED]>
Date: Mon, 4 Aug 2003 20:09:35 +0200
Message-ID: <[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/ext/Encode/encoding.pm#27 edit
Differences ...
==== //depot/perl/ext/Encode/encoding.pm#27 (text) ====
Index: perl/ext/Encode/encoding.pm
--- perl/ext/Encode/encoding.pm#26~20090~ Wed Jul 9 01:12:32 2003
+++ perl/ext/Encode/encoding.pm Mon Aug 4 23:05:53 2003
@@ -397,13 +397,13 @@
=head3 workaround to tr///;
-In perl 5.8.0, you can work aroud as follows;
+In perl 5.8.0, you can work around as follows;
use encoding 'euc-jp';
# ....
eval qq{ \$kana =~ tr/\xA4\xA1-\xA4\xF3/\xA5\xA1-\xA5\xF3/ };
-Note the C<tr//> expression is surronded by C<qq{}>. The idea behind
+Note the C<tr//> expression is surrounded by C<qq{}>. The idea behind
is the same as classic idiom that makes C<tr///> 'interpolate'.
tr/$from/$to/; # wrong!
End of Patch.