chromatic / modern_perl_book

Modern Perl: the book
http://www.modernperlbooks.com/
664 stars 187 forks source link

File mode symbol reversed in Unicode, IO Layers, and File Modes #237

Closed swuecho closed 10 years ago

swuecho commented 10 years ago

http://modernperlbooks.com/books/modern_perl_2014/09-managing-perl-programs.html#SW5wdXRhbmRPdXRwdXQ

open my $in_fh,  '>:encoding(UTF-8)', $infile;

should be

open my $in_fh,  '<:encoding(UTF-8)', $infile;

similar issue with

open my $out_fh, '<:encoding(UTF-8)', $outfile;
sebokopter commented 10 years ago

@chromatic could you close this one, since the issue is fixed in #239