summaryrefslogtreecommitdiff
path: root/lib/PerlIO.pm
diff options
context:
space:
mode:
authorRicardo Signes <rjbs@cpan.org>2013-06-26 22:12:34 -0400
committerRicardo Signes <rjbs@cpan.org>2013-06-27 22:28:30 -0400
commit8a7bc8629c40af6e31e59098eacf1dfd8eb02414 (patch)
tree39f2b74e6fbef2ca6290cb3018ceb118123399d0 /lib/PerlIO.pm
parent395d3e0e0df325033ad6bb3eb02f29bcbfd39aee (diff)
downloadperl-8a7bc8629c40af6e31e59098eacf1dfd8eb02414.tar.gz
perlexperiment: mark :pop layer as accepted
Diffstat (limited to 'lib/PerlIO.pm')
-rw-r--r--lib/PerlIO.pm9
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,...)
...