summaryrefslogtreecommitdiff
path: root/lib/PerlIO.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PerlIO.pm')
-rw-r--r--lib/PerlIO.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/PerlIO.pm b/lib/PerlIO.pm
index c94685bbf9..f45116f990 100644
--- a/lib/PerlIO.pm
+++ b/lib/PerlIO.pm
@@ -35,9 +35,10 @@ PerlIO - On demand loader for PerlIO layers and root of PerlIO::* name space
=head1 SYNOPSIS
- open($fh,"<:crlf", "my.txt"); # support platform-native and CRLF text files
+ open($fh, "<:crlf", "my.txt"); # support platform-native and
+ # CRLF text files
- open($fh,"<","his.jpg"); # portably open a binary file for reading
+ open($fh, "<", "his.jpg"); # portably open a binary file for reading
binmode($fh);
Shell: