summaryrefslogtreecommitdiff
path: root/ext/GDBM_File
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-05-14 06:03:50 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-05-14 06:03:50 +0000
commit7a1351e12b811a0eb3bbca337d9465abd02e627c (patch)
treee1d6df2e818ccc63f5baba4579af47009a6b33f7 /ext/GDBM_File
parent50b14d2bfa322c477ffa8f48e94b30185c4f8e8c (diff)
downloadperl-7a1351e12b811a0eb3bbca337d9465abd02e627c.tar.gz
[win32] merge changes#752,753 from maintbranch
p4raw-link: @753 on //depot/maint-5.004/perl: d1828021020f24bd64418fabe04b27e70428ad8d p4raw-link: @752 on //depot/maint-5.004/perl: 34b6b77de831d6635128d32b913e21377b083965 p4raw-id: //depot/win32/perl@932
Diffstat (limited to 'ext/GDBM_File')
-rw-r--r--ext/GDBM_File/GDBM_File.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/GDBM_File/GDBM_File.pm b/ext/GDBM_File/GDBM_File.pm
index 9c7ae066b7..09df4373fb 100644
--- a/ext/GDBM_File/GDBM_File.pm
+++ b/ext/GDBM_File/GDBM_File.pm
@@ -7,7 +7,7 @@ GDBM_File - Perl5 access to the gdbm library.
=head1 SYNOPSIS
use GDBM_File ;
- tie %hash, 'GDBM_File', $filename, &GDBM_WRCREAT, 0640);
+ tie %hash, 'GDBM_File', $filename, &GDBM_WRCREAT, 0640;
# Use the %hash array.
untie %hash ;