This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
perluniintro: Fix comment, Encode::decode does not have to return string with UTF8...
[perl5.git]
/
pod
/
perluniintro.pod
diff --git
a/pod/perluniintro.pod
b/pod/perluniintro.pod
index
d0ed3a0
..
c793698
100644
(file)
--- a/
pod/perluniintro.pod
+++ b/
pod/perluniintro.pod
@@
-358,7
+358,7
@@
The C<Encode> module knows about many encodings and has interfaces
for doing conversions between those encodings:
use Encode 'decode';
- $data = decode("iso-8859-3", $data); # convert from legacy
to utf-8
+ $data = decode("iso-8859-3", $data); # convert from legacy
=head2 Unicode I/O