diff options
author | Ricardo Signes <rjbs@cpan.org> | 2013-06-26 22:12:34 -0400 |
---|---|---|
committer | Ricardo Signes <rjbs@cpan.org> | 2013-06-27 22:28:30 -0400 |
commit | 8a7bc8629c40af6e31e59098eacf1dfd8eb02414 (patch) | |
tree | 39f2b74e6fbef2ca6290cb3018ceb118123399d0 /lib/PerlIO.pm | |
parent | 395d3e0e0df325033ad6bb3eb02f29bcbfd39aee (diff) | |
download | perl-8a7bc8629c40af6e31e59098eacf1dfd8eb02414.tar.gz |
perlexperiment: mark :pop layer as accepted
Diffstat (limited to 'lib/PerlIO.pm')
-rw-r--r-- | lib/PerlIO.pm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/PerlIO.pm b/lib/PerlIO.pm index f45116f990..a6745cdebd 100644 --- a/lib/PerlIO.pm +++ b/lib/PerlIO.pm @@ -157,11 +157,10 @@ will construct a "binary" stream, but then enable UTF-8 translation. =item :pop -A pseudo layer that removes the top-most layer. Gives perl code -a way to manipulate the layer stack. Should be considered -as experimental. Note that C<:pop> only works on real layers -and will not undo the effects of pseudo layers like C<:utf8>. -An example of a possible use might be: +A pseudo layer that removes the top-most layer. Gives perl code a +way to manipulate the layer stack. Note that C<:pop> only works on +real layers and will not undo the effects of pseudo layers like +C<:utf8>. An example of a possible use might be: open($fh,...) ... |