diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-04-27 05:33:41 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-04-27 05:33:41 +0000 |
commit | 106325ad18a7d364436c509de7040f7817bf07da (patch) | |
tree | 1b98b26f3b7625b6700faeb074a890825422b9ab /pod/perlopentut.pod | |
parent | 7ca86468f50e48d16c4fd42ec5831ceb1a6368c3 (diff) | |
download | perl-106325ad18a7d364436c509de7040f7817bf07da.tar.gz |
doubled words in pods (from Simon Cozens
<simon.p.cozens@jp.pwcglobal.com>)
p4raw-id: //depot/perl@5959
Diffstat (limited to 'pod/perlopentut.pod')
-rw-r--r-- | pod/perlopentut.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlopentut.pod b/pod/perlopentut.pod index 9cb9f6738a..5d2d48e7f1 100644 --- a/pod/perlopentut.pod +++ b/pod/perlopentut.pod @@ -309,7 +309,7 @@ C<O_DEFER>, C<O_SYNC>, C<O_ASYNC>, C<O_DSYNC>, C<O_RSYNC>, C<O_NOCTTY>, C<O_NDELAY> and C<O_LARGEFILE>. Consult your open(2) manpage or its local equivalent for details. (Note: starting from Perl release 5.6 the O_LARGEFILE flag, if available, is automatically -added to the sysopen() flags because large files are the the default.) +added to the sysopen() flags because large files are the default.) Here's how to use C<sysopen> to emulate the simple C<open> calls we had before. We'll omit the C<|| die $!> checks for clarity, but make sure |