diff options
author | Piotr Fusik <pfusik@op.pl> | 2005-07-31 14:50:04 +0200 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-08-02 10:39:51 +0000 |
commit | 3c4b39bee8832007b7e91bfce8701d34cacab411 (patch) | |
tree | 190f72b72255db85e5c78f68a0d0047692aab3a9 /ext/Encode | |
parent | db30010093a0bacd16d1fa3fd1bd5397da6479d3 (diff) | |
download | perl-3c4b39bee8832007b7e91bfce8701d34cacab411.tar.gz |
Typos in *.p[lm]
From: "Piotr Fusik" <pfusik@op.pl>
Message-ID: <001401c595bd$dccb5d80$0bd34dd5@piec>
p4raw-id: //depot/perl@25261
Diffstat (limited to 'ext/Encode')
-rw-r--r-- | ext/Encode/Encode.pm | 4 | ||||
-rw-r--r-- | ext/Encode/encoding.pm | 2 | ||||
-rw-r--r-- | ext/Encode/lib/Encode/Alias.pm | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/ext/Encode/Encode.pm b/ext/Encode/Encode.pm index 079d1bd10b..672ab4b566 100644 --- a/ext/Encode/Encode.pm +++ b/ext/Encode/Encode.pm @@ -562,7 +562,7 @@ Encode::FB_DEFAULT ( == 0 ) is assumed. =over 2 -=item B<NOTE:> Not all encoding suppport this feature +=item B<NOTE:> Not all encoding support this feature Some encodings ignore I<CHECK> argument. For example, L<Encode::Unicode> ignores I<CHECK> and it always croaks on error. @@ -731,7 +731,7 @@ After C<$utf8 = decode('foo', $octet);>, In any other Encoding ON --------------------------------------------- -As you see, there is one exception, In ASCII. That way you can assue +As you see, there is one exception, In ASCII. That way you can assume Goal #1. And with Encode Goal #2 is assumed but you still have to be careful in such cases mentioned in B<CAVEAT> paragraphs. diff --git a/ext/Encode/encoding.pm b/ext/Encode/encoding.pm index b52280ffe8..df8758233e 100644 --- a/ext/Encode/encoding.pm +++ b/ext/Encode/encoding.pm @@ -402,7 +402,7 @@ B<use encoding> can appear as many times as you want in a given script. The multiple use of this pragma is discouraged. By the same reason, the use this pragma inside modules is also -discouraged (though not as strongly discouranged as the case above. +discouraged (though not as strongly discouraged as the case above. See below). If you still have to write a module with this pragma, be very careful diff --git a/ext/Encode/lib/Encode/Alias.pm b/ext/Encode/lib/Encode/Alias.pm index 7776096271..2ec8f9f088 100644 --- a/ext/Encode/lib/Encode/Alias.pm +++ b/ext/Encode/lib/Encode/Alias.pm @@ -161,7 +161,7 @@ sub init_aliases hebrew|arabic|baltic|vietnamese)$/ix => '"cp" . $Encode::Alias::Winlatin2cp{lc($1)}' ); - # Common names for non-latin prefered MIME names + # Common names for non-latin preferred MIME names define_alias( 'ascii' => 'US-ascii', 'cyrillic' => 'iso-8859-5', 'arabic' => 'iso-8859-6', @@ -313,7 +313,7 @@ Prior to Encode 1.86 this fails because of "local $_". =head2 Alias overloading You can override predefined aliases by simply applying define_alias(). -The new alias is always evaluated first, and when neccessary, +The new alias is always evaluated first, and when necessary, define_alias() flushes the internal cache to make the new definition available. |