summaryrefslogtreecommitdiff
path: root/lib/open.pm
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-03-17 03:40:14 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-03-17 03:40:14 +0000
commit9bafe919456add7d4f89eb1ecafa8a6b4491ea91 (patch)
tree578cec530db7243fb374e7fc87d9fe1b70af32b2 /lib/open.pm
parentd0674b55e5a9642fec04317f696851f696a91976 (diff)
downloadperl-9bafe919456add7d4f89eb1ecafa8a6b4491ea91.tar.gz
s/:def/:DEFAULT/
p4raw-id: //depot/perl@5775
Diffstat (limited to 'lib/open.pm')
-rw-r--r--lib/open.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/open.pm b/lib/open.pm
index a845459da6..cdd20ac2c3 100644
--- a/lib/open.pm
+++ b/lib/open.pm
@@ -56,12 +56,12 @@ When they are eventually supported, this pragma will serve as one of
the interfaces to declare default disciplines for all I/O.
In future, any default disciplines declared by this pragma will be
-available by the special discipline name ":def", and could be used
+available by the special discipline name ":DEFAULT", and could be used
within handle constructors that allow disciplines to be specified.
This would make it possible to stack new disciplines over the default
ones.
- open FH, "<:para :def", $file or die "can't open $file: $!";
+ open FH, "<:para :DEFAULT", $file or die "can't open $file: $!";
Socket and directory handles will also support disciplines in
future.